Packages

package graphson

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. graphson
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class BooleanValue(@value: Boolean, @type: String = Type.Boolean.typ) extends PropertyValue with Product with Serializable
  2. case class DoubleValue(@value: Double, @type: String = Type.Double.typ) extends PropertyValue with Product with Serializable
  3. 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
  4. case class FloatValue(@value: Float, @type: String = Type.Float.typ) extends PropertyValue with Product with Serializable
  5. case class GraphSON(@value: GraphSONElements, @type: String = "tinker:graph") extends Product with Serializable
  6. case class GraphSONElements(vertices: Seq[Vertex], edges: Seq[Edge]) extends Product with Serializable
  7. case class IntValue(@value: Int, @type: String = Type.Int.typ) extends PropertyValue with Product with Serializable
  8. case class ListValue(@value: Array[PropertyValue], @type: String = Type.List.typ) extends PropertyValue with Product with Serializable
  9. case class LongValue(@value: Long, @type: String = Type.Long.typ) extends PropertyValue with Product with Serializable
  10. case class Property(id: LongValue, @value: PropertyValue, @type: String = "g:Property") extends Product with Serializable
  11. trait PropertyValue extends AnyRef
  12. case class StringValue(@value: String, @type: String = Type.String.typ) extends PropertyValue with Product with Serializable
  13. case class Vertex(id: LongValue, label: String, properties: Map[String, Property], @type: String = "g:Vertex") extends Product with Serializable

Value Members

  1. 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

  2. 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

  3. object GraphSONProtocol extends DefaultJsonProtocol
  4. object Type extends Enumeration

Inherited from AnyRef

Inherited from Any

Ungrouped