public class UncheckedPair<L,R> extends Object implements Pair<L,R>
serialVersionUID
Constructor and Description |
---|
UncheckedPair(L left,
R right) |
UncheckedPair(Pair<L,R> p) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object o) |
static <A,B> List<UncheckedPair<A,B>> |
fromIterables_unchecked(Iterable left,
Iterable right,
Class<A> lclass,
Class<B> rclass) |
L |
get_left() |
R |
get_right() |
int |
hashCode() |
void |
set_left(L l)
ALL constructors and setters reach this (or the complementing) method!
|
void |
set_right(R r)
ALL constructors and setters reach this (or the complementing) method!
|
String |
toString() |
UncheckedPair<L,R> |
with_left(L l) |
UncheckedPair<L,R> |
with_right(R r) |
public UncheckedPair<L,R> with_right(R r)
with_right
in interface Pair<L,R>
public void set_left(L l)
public void set_right(R r)
public static <A,B> List<UncheckedPair<A,B>> fromIterables_unchecked(Iterable left, Iterable right, Class<A> lclass, Class<B> rclass)
see also the complete user documentation .