Uses of Class
com.opengamma.strata.collect.tuple.Triple
-
Packages that use Triple Package Description com.opengamma.strata.collect.tuple Tuple data structures. -
-
Uses of Triple in com.opengamma.strata.collect.tuple
Methods in com.opengamma.strata.collect.tuple that return Triple Modifier and Type Method Description <Q,R,S>
Triple<A,B,C>Triple. combinedWith(Triple<Q,R,S> other, BiFunction<? super A,? super Q,? extends A> combinerFirst, BiFunction<? super B,? super R,? extends B> combinerSecond, BiFunction<? super C,? super S,? extends C> combinerThird)
Combines this instance with another.static <A,B,C>
Triple<A,B,C>Triple. of(A first, B second, C third)
Obtains a triple inferring the types.Methods in com.opengamma.strata.collect.tuple that return types with arguments of type Triple Modifier and Type Method Description Class<? extends Triple<A,B,C>>
Triple.Meta. beanType()
org.joda.beans.BeanBuilder<? extends Triple<A,B,C>>
Triple.Meta. builder()
static <A,B,C>
BinaryOperator<Triple<A,B,C>>Triple. combining(BiFunction<? super A,? super A,? extends A> combinerFirst, BiFunction<? super B,? super B,? extends B> combinerSecond, BiFunction<? super C,? super C,? extends C> combinerThird)
Returns a combiner of triple instances.Methods in com.opengamma.strata.collect.tuple with parameters of type Triple Modifier and Type Method Description <Q,R,S>
Triple<A,B,C>Triple. combinedWith(Triple<Q,R,S> other, BiFunction<? super A,? super Q,? extends A> combinerFirst, BiFunction<? super B,? super R,? extends B> combinerSecond, BiFunction<? super C,? super S,? extends C> combinerThird)
Combines this instance with another.int
Triple. compareTo(Triple<A,B,C> other)
Compares the triple based on the first element followed by the second element followed by the third element.
-