Lines Matching refs:C2

15 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable,
16 Freezable<Row<C0, C1, C2, C3, C4>>{
26 public static <C0, C1, C2> R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2) {
27 return new R3<C0,C1,C2>(p0,p1,p2);
29 public static <C0, C1, C2, C3> R4<C0,C1,C2,C3> of(C0 p0, C1 p1, C2 p2, C3 p3) {
30 return new R4<C0,C1,C2,C3>(p0,p1,p2,p3);
32 public static <C0, C1, C2, C3, C4> R5<C0,C1,C2,C3,C4> of(C0 p0, C1 p1, C2 p2, C3 p3, C4 p4) {
33 return new R5<C0,C1,C2,C3,C4>(p0,p1,p2,p3,p4);
41 public static class R3<C0, C1, C2> extends Row<C0, C1, C2, C2, C2> {
42 public R3(C0 a, C1 b, C2 c) {
46 public static class R4<C0, C1, C2, C3> extends Row<C0, C1, C2, C3, C3> {
47 public R4(C0 a, C1 b, C2 c, C3 d) {
51 public static class R5<C0, C1, C2, C3, C4> extends Row<C0, C1, C2, C3, C4> {
52 public R5(C0 a, C1 b, C2 c, C3 d, C4 e) {
57 public Row<C0, C1, C2, C3, C4> set0(C0 item) {
63 public Row<C0, C1, C2, C3, C4> set1(C1 item) {
69 public Row<C0, C1, C2, C3, C4> set2(C2 item) {
72 public C2 get2() {
73 return (C2) items[2];
75 public Row<C0, C1, C2, C3, C4> set3(C3 item) {
81 public Row<C0, C1, C2, C3, C4> set4(C4 item) {
88 protected Row<C0, C1, C2, C3, C4> set(int i, Object item) {
112 Row<C0, C1, C2, C3, C4> that = (Row<C0, C1, C2, C3, C4>)other;
130 Row<C0, C1, C2, C3, C4> that = (Row<C0, C1, C2, C3, C4>)other;
163 public Row<C0, C1, C2, C3, C4> freeze() {
171 Row<C0, C1, C2, C3, C4> result = (Row<C0, C1, C2, C3, C4>) super.clone();
179 public Row<C0, C1, C2, C3, C4> cloneAsThawed() {
181 Row<C0, C1, C2, C3, C4> result = (Row<C0, C1, C2, C3, C4>) super.clone();