Package akka.persistence.journal
Class IdentityEventAdapters$
- java.lang.Object
-
- akka.persistence.journal.EventAdapters
-
- akka.persistence.journal.IdentityEventAdapters$
-
- All Implemented Interfaces:
java.io.Serializable
,scala.Equals
,scala.Product
public class IdentityEventAdapters$ extends EventAdapters implements scala.Product, java.io.Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class akka.persistence.journal.EventAdapters
EventAdapters.CombinedReadEventAdapter$
-
-
Field Summary
Fields Modifier and Type Field Description static IdentityEventAdapters$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description IdentityEventAdapters$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canEqual(java.lang.Object x$1)
EventAdapter
get(java.lang.Class<?> clazz)
Finds the "most specific" matching adapter for the given class (i.e.int
hashCode()
int
productArity()
java.lang.Object
productElement(int x$1)
scala.collection.Iterator<java.lang.Object>
productIterator()
java.lang.String
productPrefix()
java.lang.String
toString()
-
Methods inherited from class akka.persistence.journal.EventAdapters
apply, instantiateAdapter
-
-
-
-
Field Detail
-
MODULE$
public static final IdentityEventAdapters$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
get
public EventAdapter get(java.lang.Class<?> clazz)
Description copied from class:EventAdapters
Finds the "most specific" matching adapter for the given class (i.e. it may return an adapter that can work on a interface implemented by the given class if no direct match is found).Falls back to
IdentityEventAdapter
if no adapter was defined for the given class.- Overrides:
get
in classEventAdapters
-
toString
public java.lang.String toString()
- Overrides:
toString
in classEventAdapters
-
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
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-