Uses of Interface
io.permazen.tuple.Tuple
Packages that use Tuple
Package
Description
Permazen
Encoding
s.Permazen index classes.
Generic typed classes holding ordered "tuples" of objects.
-
Uses of Tuple in io.permazen.encoding
Classes in io.permazen.encoding with type parameters of type TupleMethods in io.permazen.encoding with parameters of type Tuple -
Uses of Tuple in io.permazen.index
Methods in io.permazen.index that return types with arguments of type TupleModifier and TypeMethodDescriptionNavigableSet<? extends Tuple>
Index.asSet()
View this index as aNavigableSet
of tuples. -
Uses of Tuple in io.permazen.tuple
Classes in io.permazen.tuple that implement TupleModifier and TypeClassDescriptionclass
Tuple1<V1>
A "tuple" of one value.class
Tuple2<V1,
V2> A tuple of two values.class
Tuple3<V1,
V2, V3> A tuple of three values.class
Tuple4<V1,
V2, V3, V4> A tuple of four values.class
Tuple5<V1,
V2, V3, V4, V5> A tuple of five values.Methods in io.permazen.tuple that return TupleModifier and TypeMethodDescriptionstatic Tuple
Tuples.createTuple
(Iterable<?> values) Create aTuple
of the appropriate cardinality for the given number of objects.static Tuple
Tuples.createTuple
(Object... values) Create aTuple
of the appropriate cardinality for the given number of objects.Methods in io.permazen.tuple that return types with arguments of type TupleModifier and TypeMethodDescriptionTuples.tupleClassForSize
(int size) Get theTuple
subinterface having the specified cardinality.Method parameters in io.permazen.tuple with type arguments of type TupleModifier and TypeMethodDescriptionstatic int
Tuples.tupleSizeOf
(Class<? extends Tuple> tupleClass) Get the cardinality of the givenTuple
subtype.