Package org.openrefine.runners.local.pll
Class Tuple2<U,V>
- java.lang.Object
-
- org.openrefine.runners.local.pll.Tuple2<U,V>
-
- Type Parameters:
U
-V
-
public class Tuple2<U,V> extends Object
A class of pairs, similar to scala's Tuple2.- Author:
- Antonin Delpeuch
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
U
getKey()
V
getValue()
int
hashCode()
static <U,V>
Tuple2<U,V>of(U key, V value)
String
toString()
-