TupleType

public interface TupleType

Represents a type of tuple. Used to define a type of tuple and then create tuples of that type. http://stackoverflow.com/questions/3642452/java-n-tuple-implementation/3642623#3642623

Functions

Link copied to clipboard
public abstract Tuple createTuple(@NotNull() Array<@NotNull() Comparable<? extends Object>> values)
Factory method to create a tuple from the current type.
Link copied to clipboard
public abstract Class<? extends Object> getIthType(int i)
Link copied to clipboard
@NotNull()
public static @NotNull() TupleType of(@NotNull() Array<@NotNull() Class<? extends Comparable<? extends Object>>> types)
Link copied to clipboard
public abstract int size()