| Modifier and Type | Class and Description |
|---|---|
static class |
Row.R2<C0,C1> |
static class |
Row.R3<C0,C1,C2> |
static class |
Row.R4<C0,C1,C2,C3> |
static class |
Row.R5<C0,C1,C2,C3,C4> |
| Modifier and Type | Field and Description |
|---|---|
protected boolean |
frozen |
protected Object[] |
items |
| Constructor and Description |
|---|
Row() |
| Modifier and Type | Method and Description |
|---|---|
Object |
clone()
Creates and returns a copy of this
Object. |
Row<C0,C1,C2,C3,C4> |
cloneAsThawed()
Provides for the clone operation.
|
int |
compareTo(Object other)
Compares this object to the specified object to determine their relative
order.
|
boolean |
equals(Object other)
Compares this instance with the specified object and indicates if they
are equal.
|
Row<C0,C1,C2,C3,C4> |
freeze()
Freezes the object.
|
C0 |
get0() |
C1 |
get1() |
C2 |
get2() |
C3 |
get3() |
C4 |
get4() |
int |
hashCode()
Returns an integer hash code for this object.
|
boolean |
isFrozen()
Determines whether the object has been frozen or not.
|
static <C0,C1> Row.R2<C0,C1> |
of(C0 p0,
C1 p1)
Convenience Methods
|
static <C0,C1,C2> Row.R3<C0,C1,C2> |
of(C0 p0,
C1 p1,
C2 p2) |
static <C0,C1,C2,C3> |
of(C0 p0,
C1 p1,
C2 p2,
C3 p3) |
static <C0,C1,C2,C3,C4> |
of(C0 p0,
C1 p1,
C2 p2,
C3 p3,
C4 p4) |
protected Row<C0,C1,C2,C3,C4> |
set(int i,
Object item) |
Row<C0,C1,C2,C3,C4> |
set0(C0 item) |
Row<C0,C1,C2,C3,C4> |
set1(C1 item) |
Row<C0,C1,C2,C3,C4> |
set2(C2 item) |
Row<C0,C1,C2,C3,C4> |
set3(C3 item) |
Row<C0,C1,C2,C3,C4> |
set4(C4 item) |
String |
toString()
Returns a string containing a concise, human-readable description of this
object.
|
protected Object[] items
protected volatile boolean frozen
public static <C0,C1> Row.R2<C0,C1> of(C0 p0, C1 p1)
public static <C0,C1,C2> Row.R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2)
public static <C0,C1,C2,C3> Row.R4<C0,C1,C2,C3> of(C0 p0, C1 p1, C2 p2, C3 p3)
public static <C0,C1,C2,C3,C4> Row.R5<C0,C1,C2,C3,C4> of(C0 p0, C1 p1, C2 p2, C3 p3, C4 p4)
public C0 get0()
public C1 get1()
public C2 get2()
public C3 get3()
public C4 get4()
public int hashCode()
ObjectObject.equals(java.lang.Object) returns true must return
the same hash code value. This means that subclasses of Object
usually override both methods or neither method.
Note that hash values must not change over time unless information used in equals comparisons also changes.
See Writing a correct
hashCode method
if you intend implementing your own hashCode method.
hashCode in class ObjectObject.equals(java.lang.Object)public boolean equals(Object other)
Objecto must represent the same object
as this instance using a class-specific comparison. The general contract
is that this comparison should be reflexive, symmetric, and transitive.
Also, no object reference other than null is equal to null.
The default implementation returns true only if this ==
o. See Writing a correct
equals method
if you intend implementing your own equals method.
The general contract for the equals and Object.hashCode() methods is that if equals returns true for
any two objects, then hashCode() must return the same value for
these objects. This means that subclasses of Object usually
override either both methods or neither of them.
equals in class Objectother - the object to compare this instance with.true if the specified object is equal to this Object; false otherwise.Object.hashCode()public int compareTo(Object other)
ComparablecompareTo in interface Comparableother - the object to compare to this instance.another;
a positive integer if this instance is greater than
another; 0 if this instance has the same order as
another.public String toString()
ObjectgetClass().getName() + '@' + Integer.toHexString(hashCode())
See Writing a useful
toString method
if you intend implementing your own toString method.
public boolean isFrozen()
Freezablepublic Row<C0,C1,C2,C3,C4> freeze()
Freezablepublic Object clone()
ObjectObject. The default
implementation returns a so-called "shallow" copy: It creates a new
instance of the same class and then copies the field values (including
object references) from this instance to the new instance. A "deep" copy,
in contrast, would also recursively clone nested objects. A subclass that
needs to implement this kind of cloning should call super.clone()
to create the new instance and then create deep copies of the nested,
mutable objects.