- java.lang.Object
- 
- aeonics.util.Tuples.Tuple<A,B>
 
- 
- Type Parameters:
- A- the first value type
- B- the second value type
 - Enclosing class:
- Tuples
 
 public static class Tuples.Tuple<A,B> extends java.lang.ObjectA wrapper for two values
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)static <X,Y>
 Tuples.Tuple<X,Y>of(X a, Y b)Creates a new two-value wrapper
 
- 
- 
- 
Method Detail- 
equalspublic boolean equals(java.lang.Object obj) - Overrides:
- equalsin class- java.lang.Object
 
 - 
ofpublic static <X,Y> Tuples.Tuple<X,Y> of(X a, Y b) Creates a new two-value wrapper- Type Parameters:
- X- the first value type
- Y- the second value type
- Parameters:
- a- the first value
- b- the second value
- Returns:
- a new two-value wrapper
 
 
- 
 
-