Package io.permazen.tuple
Class Tuple1<V1>
java.lang.Object
io.permazen.tuple.Tuple1<V1>
- Type Parameters:
V1
- value type
A "tuple" of one value.
Instances are immutable.
-
Constructor Summary
-
Method Summary
-
Constructor Details
-
Tuple1
Constructor.- Parameters:
v1
- the value
-
-
Method Details
-
getValue1
Description copied from interface:Has1
Get the first value. -
getSize
public int getSize()Description copied from interface:Tuple
Get the number of values in this tuple. -
asList
Description copied from interface:Tuple
View this instance as a list. -
toString
-
equals
Description copied from interface:Tuple
Compare for equality.Tuples are equal if they have the same size and the corresponding individual values are equal (or null).
-
hashCode
public int hashCode()Description copied from interface:Tuple
Compute hash code.The hash code of a tuple is the exclusive-OR of the hash codes of the individual values (using zero for null values).
-