diff options
| author | Raven Szewczyk <git@eigenraven.me> | 2024-05-24 19:13:49 +0100 |
|---|---|---|
| committer | Raven Szewczyk <git@eigenraven.me> | 2024-05-24 19:13:49 +0100 |
| commit | 9b6fc0420059c6b399506cee841290766b72bd53 (patch) | |
| tree | 9a769dda9b37d90d6cdb27e4f8b6b7b2293d5ec1 /gtpp/src/main/java/gtPlusPlus/api/objects/data/Triplet.java | |
| parent | 227856cdae4dae22fca53f2dc027cac476123bd0 (diff) | |
| parent | 75915e9e1fce7a8ee500add139b42e806e9497b5 (diff) | |
| download | GT5-Unofficial-9b6fc0420059c6b399506cee841290766b72bd53.tar.gz GT5-Unofficial-9b6fc0420059c6b399506cee841290766b72bd53.tar.bz2 GT5-Unofficial-9b6fc0420059c6b399506cee841290766b72bd53.zip | |
Merge in GTplusplus with history
git-subtree-dir: gtpp
git-subtree-mainline: 227856cdae4dae22fca53f2dc027cac476123bd0
git-subtree-split: 75915e9e1fce7a8ee500add139b42e806e9497b5
Diffstat (limited to 'gtpp/src/main/java/gtPlusPlus/api/objects/data/Triplet.java')
| -rw-r--r-- | gtpp/src/main/java/gtPlusPlus/api/objects/data/Triplet.java | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gtpp/src/main/java/gtPlusPlus/api/objects/data/Triplet.java b/gtpp/src/main/java/gtPlusPlus/api/objects/data/Triplet.java new file mode 100644 index 0000000000..625ec630aa --- /dev/null +++ b/gtpp/src/main/java/gtPlusPlus/api/objects/data/Triplet.java @@ -0,0 +1,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; + } +} |
