public class Tuple2<T1,T2> extends Object implements Tuple, Comparable<Tuple2<T1,T2>>, Serializable, Cloneable
Constructor and Description |
---|
Tuple2(T1 v1,
T2 v2) |
Tuple2(Tuple2<T1,T2> tuple) |
Modifier and Type | Method and Description |
---|---|
Object[] |
array()
Get an array representation of this tuple.
|
Tuple2<T1,T2> |
clone() |
int |
compareTo(Tuple2<T1,T2> other) |
<T3> Tuple3<T1,T2,T3> |
concat(T3 value)
Concatenate a value to this tuple.
|
<T3> Tuple3<T1,T2,T3> |
concat(Tuple1<T3> tuple)
Concatenate a tuple to this tuple.
|
<T3,T4> Tuple4<T1,T2,T3,T4> |
concat(Tuple2<T3,T4> tuple)
Concatenate a tuple to this tuple.
|
<T3,T4,T5> Tuple5<T1,T2,T3,T4,T5> |
concat(Tuple3<T3,T4,T5> tuple)
Concatenate a tuple to this tuple.
|
<T3,T4,T5,T6> |
concat(Tuple4<T3,T4,T5,T6> tuple)
Concatenate a tuple to this tuple.
|
<T3,T4,T5,T6,T7> |
concat(Tuple5<T3,T4,T5,T6,T7> tuple)
Concatenate a tuple to this tuple.
|
<T3,T4,T5,T6,T7,T8> |
concat(Tuple6<T3,T4,T5,T6,T7,T8> tuple)
Concatenate a tuple to this tuple.
|
int |
degree()
The degree of this tuple: 2.
|
boolean |
equals(Object o) |
int |
hashCode() |
static <T extends Comparable<T>> |
intersect(Tuple2<T,T> left,
Tuple2<T,T> right)
The intersection of two ranges.
|
Iterator<Object> |
iterator() |
List<?> |
list()
Get a list representation of this tuple.
|
<R> R |
map(Function2<T1,T2,R> function)
Apply this tuple as arguments to a function.
|
<U1> Tuple2<U1,T2> |
map1(Function1<? super T1,? extends U1> function)
Apply attribute 1 as argument to a function and return a new tuple with the substituted argument.
|
<U2> Tuple2<T1,U2> |
map2(Function1<? super T2,? extends U2> function)
Apply attribute 2 as argument to a function and return a new tuple with the substituted argument.
|
static <T extends Comparable<T>> |
overlaps(Tuple2<T,T> left,
Tuple2<T,T> right)
Whether two tuples overlap.
|
Tuple2<T2,T1> |
swap()
Get a tuple with the two attributes swapped.
|
String |
toString() |
T1 |
v1() |
T2 |
v2() |
finalize, getClass, notify, notifyAll, wait, wait, wait
collectors, collectors, collectors, collectors, collectors, collectors, collectors, collectors, range, tuple, tuple, tuple, tuple, tuple, tuple, tuple, tuple, tuple
forEach, spliterator
public T1 v1()
public T2 v2()
public final <T3> Tuple3<T1,T2,T3> concat(Tuple1<T3> tuple)
public final <T3,T4> Tuple4<T1,T2,T3,T4> concat(Tuple2<T3,T4> tuple)
public final <T3,T4,T5> Tuple5<T1,T2,T3,T4,T5> concat(Tuple3<T3,T4,T5> tuple)
public final <T3,T4,T5,T6> Tuple6<T1,T2,T3,T4,T5,T6> concat(Tuple4<T3,T4,T5,T6> tuple)
public final <T3,T4,T5,T6,T7> Tuple7<T1,T2,T3,T4,T5,T6,T7> concat(Tuple5<T3,T4,T5,T6,T7> tuple)
public final <T3,T4,T5,T6,T7,T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> concat(Tuple6<T3,T4,T5,T6,T7,T8> tuple)
public static final <T extends Comparable<T>> boolean overlaps(Tuple2<T,T> left, Tuple2<T,T> right)
// true
range(1, 3).overlaps(range(2, 4))
// false
range(1, 3).overlaps(range(5, 8))
public static final <T extends Comparable<T>> Optional<Tuple2<T,T>> intersect(Tuple2<T,T> left, Tuple2<T,T> right)
// (2, 3)
range(1, 3).intersect(range(2, 4))
// none
range(1, 3).intersect(range(5, 8))
public final <R> R map(Function2<T1,T2,R> function)
public final <U1> Tuple2<U1,T2> map1(Function1<? super T1,? extends U1> function)
public final <U2> Tuple2<T1,U2> map2(Function1<? super T2,? extends U2> function)
public final Object[] array()
Tuple
public final List<?> list()
Tuple
public final int degree()
public int compareTo(Tuple2<T1,T2> other)
compareTo
in interface Comparable<Tuple2<T1,T2>>
Copyright © 2015. All Rights Reserved.