FirstType
- Type of the first object in the triple.SecondType
- Type of the second object in the triple.ThirdType
- Type of the third object in thet triple.public interface Triple<FirstType,SecondType,ThirdType>
Triple
interface defines the functionality of an object that
contains a three other objects inside of it. This may also be known as a
triplet.Modifier and Type | Method and Description |
---|---|
FirstType |
getFirst()
Gets the first object.
|
SecondType |
getSecond()
Gets the second object.
|
ThirdType |
getThird()
Gets the third object.
|
FirstType getFirst()
SecondType getSecond()
ThirdType getThird()