Home | History | Annotate | Download | only in impl

Lines Matching refs:C3

17 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable,
18 Freezable<Row<C0, C1, C2, C3, C4>>{
31 public static <C0, C1, C2, C3> R4<C0,C1,C2,C3> of(C0 p0, C1 p1, C2 p2, C3 p3) {
32 return new R4<C0,C1,C2,C3>(p0,p1,p2,p3);
34 public static <C0, C1, C2, C3, C4> R5<C0,C1,C2,C3,C4> of(C0 p0, C1 p1, C2 p2, C3 p3, C4 p4) {
35 return new R5<C0,C1,C2,C3,C4>(p0,p1,p2,p3,p4);
48 public static class R4<C0, C1, C2, C3> extends Row<C0, C1, C2, C3, C3> {
49 public R4(C0 a, C1 b, C2 c, C3 d) {
53 public static class R5<C0, C1, C2, C3, C4> extends Row<C0, C1, C2, C3, C4> {
54 public R5(C0 a, C1 b, C2 c, C3 d, C4 e) {
59 public Row<C0, C1, C2, C3, C4> set0(C0 item) {
65 public Row<C0, C1, C2, C3, C4> set1(C1 item) {
71 public Row<C0, C1, C2, C3, C4> set2(C2 item) {
77 public Row<C0, C1, C2, C3, C4> set3(C3 item) {
80 public C3 get3() {
81 return (C3) items[3];
83 public Row<C0, C1, C2, C3, C4> set4(C4 item) {
90 protected Row<C0, C1, C2, C3, C4> set(int i, Object item) {
116 Row<C0, C1, C2, C3, C4> that = (Row<C0, C1, C2, C3, C4>)other;
135 Row<C0, C1, C2, C3, C4> that = (Row<C0, C1, C2, C3, C4>)other;
171 public Row<C0, C1, C2, C3, C4> freeze() {
180 Row<C0, C1, C2, C3, C4> result = (Row<C0, C1, C2, C3, C4>) super.clone();
189 public Row<C0, C1, C2, C3, C4> cloneAsThawed() {
191 Row<C0, C1, C2, C3, C4> result = (Row<C0, C1, C2, C3, C4>) super.clone();