Class SerializedCollection
- java.lang.Object
-
- org.opennms.netmgt.graph.persistence.converter.collection.SerializedCollection
-
public class SerializedCollection extends Object
Represents aCollection
to be persisted as Json string. This class contains the serialized objects of the original Java object, as well as the collection type, to later de-serialize accordingly.- See Also:
CollectionConverter
-
-
Constructor Summary
Constructors Constructor Description SerializedCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<SerializedCollectionEntry>
getEntries()
Class
getType()
int
hashCode()
void
setEntries(List<SerializedCollectionEntry> entries)
void
setType(Class type)
String
toString()
-
-
-
Method Detail
-
getType
public Class getType()
-
setType
public void setType(Class type)
-
getEntries
public List<SerializedCollectionEntry> getEntries()
-
setEntries
public void setEntries(List<SerializedCollectionEntry> entries)
-
-