Package org.nd4j.common.primitives
Class ImmutableTriple<F,S,T>
- java.lang.Object
-
- org.nd4j.common.primitives.ImmutableTriple<F,S,T>
-
- All Implemented Interfaces:
Serializable
public class ImmutableTriple<F,S,T> extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedImmutableTriple()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description FgetLeft()SgetMiddle()TgetRight()static <F,S,T>
ImmutableTriple<F,S,T>of(F first, S second, T third)static <F,S,T>
ImmutableTriple<F,S,T>tripleOf(F first, S second, T third)
-
-
-
Method Detail
-
getLeft
public F getLeft()
-
getMiddle
public S getMiddle()
-
getRight
public T getRight()
-
tripleOf
public static <F,S,T> ImmutableTriple<F,S,T> tripleOf(F first, S second, T third)
-
of
public static <F,S,T> ImmutableTriple<F,S,T> of(F first, S second, T third)
-
-