Modes of operation of the GraphSONUtility.
Namespace:
VelocityGraph.Frontenac.Blueprints.Util.IO.GraphSON
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax Public Enumeration GraphSonMode
public enum class GraphSonMode
Members
| Member name | Value | Description |
---|
| COMPACT | 0 |
COMPACT constructs GraphSON on the assumption that all property keys
are fair game for exclusion including _type, _inV, _outV, _label and _id.
It is possible to write GraphSON that cannot be read back into Graph,
if some or all of these keys are excluded.
|
| NORMAL | 1 |
NORMAL includes the _type field and JSON data typing.
|
| EXTENDED | 2 |
EXTENDED includes the _type field and explicit data typing.
|
See Also