Package | Description |
---|---|
lavesdk.algorithm | |
lavesdk.algorithm.plugin.views | |
lavesdk.configuration | |
lavesdk.math.graph | |
lavesdk.math.graph.network | |
lavesdk.serialization |
Modifier and Type | Class and Description |
---|---|
class |
AlgorithmState
Stores the state of an algorithm after (executing) a specific step of the algorithm.
|
Modifier and Type | Method and Description |
---|---|
boolean |
AlgorithmState.equals(Serializer s) |
Modifier and Type | Class and Description |
---|---|
class |
GraphTransferProtocol.TransferData
Represents a storage for the properties of an object that should be transfered
from one graph view to another.
|
Modifier and Type | Method and Description |
---|---|
void |
GraphView.deserialize(Serializer s) |
void |
GraphView.VisualVertex.deserialize(Serializer s) |
void |
GraphView.VisualEdge.deserialize(Serializer s) |
void |
ViewGroup.restoreWeights(Serializer s,
java.lang.String key,
float[] def)
Restores the weights of the components.
|
void |
GraphView.serialize(Serializer s) |
void |
GraphView.VisualVertex.serialize(Serializer s) |
void |
GraphView.VisualEdge.serialize(Serializer s) |
void |
ViewGroup.storeWeights(Serializer s,
java.lang.String key)
Stores the current weights of the components in the specified
Serializer . |
Modifier and Type | Class and Description |
---|---|
class |
Configuration
The configuration data of a plugin.
|
Modifier and Type | Method and Description |
---|---|
void |
Vertex.deserialize(Serializer s) |
void |
Edge.deserialize(Serializer s) |
void |
Vertex.serialize(Serializer s) |
void |
Edge.serialize(Serializer s) |
Modifier and Type | Method and Description |
---|---|
void |
Node.deserialize(Serializer s) |
void |
Arc.deserialize(Serializer s) |
void |
Node.serialize(Serializer s) |
void |
Arc.serialize(Serializer s) |
Modifier and Type | Method and Description |
---|---|
Serializer |
Serializer.addSerializer(java.lang.String key,
Serializer s)
Adds a (sub) serializer to this serializer.
|
Serializer |
Serializer.getSerializer(java.lang.String key)
Gets a (sub) serializer for a given data key.
|
<T extends Serializable> |
ObjectFile.getSerializer(T o,
java.lang.String serializerName)
Gets a serializer for a given object.
|
Modifier and Type | Method and Description |
---|---|
Serializer |
Serializer.addSerializer(java.lang.String key,
Serializer s)
Adds a (sub) serializer to this serializer.
|
void |
Serializable.deserialize(Serializer s)
Deserializes (loads) the object data from the given serializer.
|
boolean |
Serializer.equals(Serializer s)
Compares the specified serializer with this serializer and returns
true if the specified serializer
serializes the same data (mapping of data key <-> data value) as this serializer. |
void |
Serializable.serialize(Serializer s)
Serializes (saves) the object data to the given serializer.
|