Class MappingEntry<V>
- java.lang.Object
-
- org.opendaylight.lispflowmapping.interfaces.dao.MappingEntry<V>
-
- Type Parameters:
V
- The type of the mapping key.
public class MappingEntry<V> extends java.lang.Object
A mapping service entry in the DAO.
-
-
Constructor Summary
Constructors Constructor Description MappingEntry(java.lang.String key, V value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getKey()
V
getValue()
int
hashCode()
java.lang.String
toString()
-
-
-
Constructor Detail
-
MappingEntry
public MappingEntry(java.lang.String key, V value)
-
-
Method Detail
-
getKey
public java.lang.String getKey()
-
getValue
public V getValue()
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-