summaryrefslogtreecommitdiffstats
path: root/common-app-api/src/main/java/org/openecomp/sdc/common/util/EitherPair.java
blob: 44f0d251c283fa2ef14effd0b5170814edbc191a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package org.openecomp.sdc.common.util;

import fj.data.Either;

import java.util.function.BiFunction;
import java.util.function.Function;

public class EitherPair<L, M, R> {

    private Either<L, R> firstEither;
    private Either<M, R> secondEither;

    private EitherPair(Either<L, R> firstEither, Either<M, R> secondEither) {
        this.firstEither = firstEither;
        this.secondEither = secondEither;
    }

    public static <L, M, R> EitherPair<L, M, R> from(Either<L, R> firstEither,
                                                     Either<M, R> secondEither) {
        return new EitherPair<>(firstEither, secondEither);
    }

    public <X> X either(BiFunction<L, M, X> onLeft, Function<R, X > onRight) {
        if (firstEither.isRight()) {
            return onRight.apply(firstEither.right().value());
        }
        if (secondEither.isRight()) {
            return onRight.apply(secondEither.right().value());
        }
        return onLeft.apply(firstEither.left().value(), secondEither.left().value());
    }


}