|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.hadoop.hbase.util.Pair<T1,T2>
T1
- T2
- @InterfaceAudience.Public @InterfaceStability.Stable public class Pair<T1,T2>
A generic class for pairs.
Field Summary | |
---|---|
protected T1 |
first
|
protected T2 |
second
|
Constructor Summary | |
---|---|
Pair()
Default constructor. |
|
Pair(T1 a,
T2 b)
Constructor |
Method Summary | ||
---|---|---|
boolean |
equals(Object other)
|
|
T1 |
getFirst()
Return the first element stored in the pair. |
|
T2 |
getSecond()
Return the second element stored in the pair. |
|
int |
hashCode()
|
|
static
|
newPair(T1 a,
T2 b)
Constructs a new pair, inferring the type via the passed arguments |
|
void |
setFirst(T1 a)
Replace the first element of the pair. |
|
void |
setSecond(T2 b)
Replace the second element of the pair. |
|
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected T1 first
protected T2 second
Constructor Detail |
---|
public Pair()
public Pair(T1 a, T2 b)
a
- operandb
- operandMethod Detail |
---|
public static <T1,T2> Pair<T1,T2> newPair(T1 a, T2 b)
T1
- type for firstT2
- type for seconda
- first elementb
- second element
public void setFirst(T1 a)
a
- operandpublic void setSecond(T2 b)
b
- operandpublic T1 getFirst()
public T2 getSecond()
public boolean equals(Object other)
equals
in class Object
public int hashCode()
hashCode
in class Object
public String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |