Package akka.japi
Class Pair<A,B>
- java.lang.Object
-
- akka.japi.Pair<A,B>
-
- All Implemented Interfaces:
java.io.Serializable
,scala.Equals
,scala.Product
public class Pair<A,B> extends java.lang.Object implements scala.Product, java.io.Serializable
Java API Represents a pair (tuple) of two elements.Additional tuple types for 3 to 22 values are defined in the
akka.japi.tuple
package, e.g.Tuple3
.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <A,B>
Pair<A,B>apply(A first, B second)
boolean
canEqual(java.lang.Object x$1)
<A,B>
Pair<A,B>copy(A first, B second)
<A,B>
Acopy$default$1()
<A,B>
Bcopy$default$2()
static <A,B>
Pair<A,B>create(A first, B second)
boolean
equals(java.lang.Object x$1)
A
first()
int
hashCode()
int
productArity()
java.lang.Object
productElement(int x$1)
java.lang.String
productElementName(int x$1)
scala.collection.Iterator<java.lang.Object>
productIterator()
java.lang.String
productPrefix()
B
second()
scala.Tuple2<A,B>
toScala()
java.lang.String
toString()
static <A,B>
scala.Option<scala.Tuple2<A,B>>unapply(Pair<A,B> x$0)
-
-
-
Method Detail
-
create
public static <A,B> Pair<A,B> create(A first, B second)
-
apply
public static <A,B> Pair<A,B> apply(A first, B second)
-
unapply
public static <A,B> scala.Option<scala.Tuple2<A,B>> unapply(Pair<A,B> x$0)
-
first
public A first()
-
second
public B second()
-
copy
public <A,B> Pair<A,B> copy(A first, B second)
-
copy$default$1
public <A,B> A copy$default$1()
-
copy$default$2
public <A,B> B copy$default$2()
-
productPrefix
public java.lang.String productPrefix()
- Specified by:
productPrefix
in interfacescala.Product
-
productArity
public int productArity()
- Specified by:
productArity
in interfacescala.Product
-
productElement
public java.lang.Object productElement(int x$1)
- Specified by:
productElement
in interfacescala.Product
-
productIterator
public scala.collection.Iterator<java.lang.Object> productIterator()
- Specified by:
productIterator
in interfacescala.Product
-
canEqual
public boolean canEqual(java.lang.Object x$1)
- Specified by:
canEqual
in interfacescala.Equals
-
productElementName
public java.lang.String productElementName(int x$1)
- Specified by:
productElementName
in interfacescala.Product
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object x$1)
- Specified by:
equals
in interfacescala.Equals
- Overrides:
equals
in classjava.lang.Object
-
-