| 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() |
Row<C0,C1,C2,C3,C4> |
cloneAsThawed()
Provides for the clone operation.
|
int |
compareTo(Object other) |
boolean |
equals(Object other) |
Row<C0,C1,C2,C3,C4> |
freeze()
Freezes the object.
|
C0 |
get0() |
C1 |
get1() |
C2 |
get2() |
C3 |
get3() |
C4 |
get4() |
int |
hashCode() |
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() |
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 compareTo(Object other)
compareTo in interface Comparablepublic boolean isFrozen()
Freezablepublic Row<C0,C1,C2,C3,C4> freeze()
Freezable