blob: 625ec630aa7197a7f70f37c7dad9c961193cf95d (
plain)
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
|
package gtPlusPlus.api.objects.data;
public class Triplet<K, V, C> {
private final K key;
private final V value;
private final C count;
public Triplet(final K key, final V value, final C value2) {
this.key = key;
this.value = value;
this.count = value2;
}
public final K getValue_1() {
return this.key;
}
public final V getValue_2() {
return this.value;
}
public final C getValue_3() {
return this.count;
}
}
|