public class Triple<F,S,T> extends Object implements Serializable
Modifier and Type | Field and Description |
---|---|
protected F |
first |
protected S |
second |
protected T |
third |
Constructor and Description |
---|
Triple() |
Modifier and Type | Method and Description |
---|---|
F |
getLeft() |
S |
getMiddle() |
T |
getRight() |
static <F,S,T> Triple<F,S,T> |
of(F first,
S second,
T third) |
static <F,S,T> Triple<F,S,T> |
tripleOf(F first,
S second,
T third) |
Copyright © 2020. All rights reserved.