F - The type of the first element of the serialisable triple.S - The type of the second element of the serialisable triple.T - The type of the third element of the serialisable triple.public class SerialisableTriple<F,S,T> extends Triple<F,S,T> implements java.io.Serializable
SerialisableTriple and a
Triple are equal if their elements are equal.
SerialisableTriple should be preferred whenever possible.| Constructor and Description |
|---|
SerialisableTriple(F first,
S second,
T third)
Constructor.
|
public SerialisableTriple(F first, S second, T third)
first - The first element of the triple.second - The second element of the triple.third - The third element of the triple.java.lang.IllegalArgumentException - If the designated elements are not
serialisable, an IllegalArgumentException will be
thrown.