Uses of Class
com.opengamma.strata.collect.tuple.ObjIntPair
-
Packages that use ObjIntPair Package Description com.opengamma.strata.collect Root package for common data structures used by Strata.com.opengamma.strata.collect.tuple Tuple data structures. -
-
Uses of ObjIntPair in com.opengamma.strata.collect
Methods in com.opengamma.strata.collect that return types with arguments of type ObjIntPair Modifier and Type Method Description static <T> Stream<ObjIntPair<T>>
Guavate. zipWithIndex(Stream<T> stream)
Creates a stream that wraps a stream with the index. -
Uses of ObjIntPair in com.opengamma.strata.collect.tuple
Methods in com.opengamma.strata.collect.tuple that return ObjIntPair Modifier and Type Method Description static <A> ObjIntPair<A>
ObjIntPair. of(A first, int second)
Obtains an instance from anObject
and anint
.static <A> ObjIntPair<A>
ObjIntPair. ofPair(Pair<A,Integer> pair)
Obtains an instance from aPair
.Methods in com.opengamma.strata.collect.tuple that return types with arguments of type ObjIntPair Modifier and Type Method Description Class<? extends ObjIntPair<A>>
ObjIntPair.Meta. beanType()
org.joda.beans.BeanBuilder<? extends ObjIntPair<A>>
ObjIntPair.Meta. builder()
Methods in com.opengamma.strata.collect.tuple with parameters of type ObjIntPair Modifier and Type Method Description int
ObjIntPair. compareTo(ObjIntPair<A> other)
Compares the pair based on the first element followed by the second element.
-