Uses of Class
util.Triple

Packages that use Triple
util   
 

Uses of Triple in util
 

Methods in util that return Triple
static
<A,B,C> Triple<A,B,C>
Triple.of(A a, B b, C c)
          A more readable synonym for triple(A, B, C).
static
<A,B,C> Triple<A,B,C>
Triple.triple(A a, B b, C c)
          A convenience method so that the types of the elements don't have to be given explicitly.