-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSixTuples.java
More file actions
46 lines (38 loc) · 721 Bytes
/
Copy pathSixTuples.java
File metadata and controls
46 lines (38 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package src.thinkinginjava.Generics15;
/**
* Created by Ryan on 2017/2/16.
*/
public class SixTuples<A,B,C,D,E,F> {
private final A a;
private final B b;
private final C c;
private final D d;
private final E e;
private final F f;
public SixTuples(A a, B b, C c, D d, E e, F f) {
this.a = a;
this.b = b;
this.c = c;
this.d = d;
this.e = e;
this.f = f;
}
public A getA() {
return a;
}
public B getB() {
return b;
}
public C getC() {
return c;
}
public D getD() {
return d;
}
public E getE() {
return e;
}
public F getF() {
return f;
}
}