package graphson
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- graphson
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- case class BooleanValue(@value: Boolean, @type: String = Type.Boolean.typ) extends PropertyValue with Product with Serializable
- case class DoubleValue(@value: Double, @type: String = Type.Double.typ) extends PropertyValue with Product with Serializable
- case class Edge(id: LongValue, label: String, inVLabel: String, outVLabel: String, inV: LongValue, outV: LongValue, properties: Map[String, Property], @type: String = "g:Edge") extends Product with Serializable
- case class FloatValue(@value: Float, @type: String = Type.Float.typ) extends PropertyValue with Product with Serializable
- case class GraphSON(@value: GraphSONElements, @type: String = "tinker:graph") extends Product with Serializable
- case class GraphSONElements(vertices: Seq[Vertex], edges: Seq[Edge]) extends Product with Serializable
- case class IntValue(@value: Int, @type: String = Type.Int.typ) extends PropertyValue with Product with Serializable
- case class ListValue(@value: Array[PropertyValue], @type: String = Type.List.typ) extends PropertyValue with Product with Serializable
- case class LongValue(@value: Long, @type: String = Type.Long.typ) extends PropertyValue with Product with Serializable
- case class NodeIdValue(@value: Long, @type: String = Type.NodeId.typ) extends PropertyValue with Product with Serializable
- case class Property(id: LongValue, @value: PropertyValue, @type: String = "g:Property") extends Product with Serializable
- trait PropertyValue extends AnyRef
- case class StringValue(@value: String, @type: String = Type.String.typ) extends PropertyValue with Product with Serializable
- case class Vertex(id: LongValue, label: String, properties: Map[String, Property], @type: String = "g:Vertex") extends Product with Serializable
Value Members
- object GraphSONExporter extends Exporter
Exports OverflowDB graph to GraphSON 3.0
Exports OverflowDB graph to GraphSON 3.0
https://tinkerpop.apache.org/docs/3.4.1/dev/io/#graphson-3d0
- object GraphSONImporter extends Importer
Imports OverflowDB graph to GraphSON 3.0
Imports OverflowDB graph to GraphSON 3.0
https://tinkerpop.apache.org/docs/3.4.1/dev/io/#graphson-3d0
- object GraphSONProtocol extends DefaultJsonProtocol
- object Type extends Enumeration