Class NoneTriJoiner<A,B,C>
- java.lang.Object
-
- org.optaplanner.core.impl.score.stream.common.AbstractJoiner
-
- org.optaplanner.core.impl.score.stream.tri.AbstractTriJoiner<A,B,C>
-
- org.optaplanner.core.impl.score.stream.tri.NoneTriJoiner<A,B,C>
-
- All Implemented Interfaces:
TriJoiner<A,B,C>
public final class NoneTriJoiner<A,B,C> extends AbstractTriJoiner<A,B,C>
-
-
Constructor Summary
Constructors Constructor Description NoneTriJoiner()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JoinerType[]
getJoinerTypes()
BiFunction<A,B,Object[]>
getLeftCombinedMapping()
BiFunction<A,B,Object>
getLeftMapping(int index)
Function<C,Object[]>
getRightCombinedMapping()
Function<C,Object>
getRightMapping(int index)
-
Methods inherited from class org.optaplanner.core.impl.score.stream.tri.AbstractTriJoiner
getFilter, matches, merge
-
-
-
-
Method Detail
-
getLeftMapping
public BiFunction<A,B,Object> getLeftMapping(int index)
- Specified by:
getLeftMapping
in classAbstractTriJoiner<A,B,C>
-
getLeftCombinedMapping
public BiFunction<A,B,Object[]> getLeftCombinedMapping()
- Specified by:
getLeftCombinedMapping
in classAbstractTriJoiner<A,B,C>
-
getJoinerTypes
public JoinerType[] getJoinerTypes()
- Specified by:
getJoinerTypes
in classAbstractJoiner
-
getRightMapping
public Function<C,Object> getRightMapping(int index)
- Specified by:
getRightMapping
in classAbstractTriJoiner<A,B,C>
-
getRightCombinedMapping
public Function<C,Object[]> getRightCombinedMapping()
- Specified by:
getRightCombinedMapping
in classAbstractTriJoiner<A,B,C>
-
-