renesca

graph

package graph

Visibility
  1. Public
  2. All

Type Members

  1. class Graph extends AnyRef

  2. sealed trait GraphChange extends AnyRef

  3. case class Label(name: String) extends Product with Serializable

  4. class Node extends AnyRef

  5. case class NodeDelete(nodeId: Long) extends GraphChange with Product with Serializable

  6. class NodeLabels extends Set[Label] with SetLike[Label, NodeLabels]

  7. case class NodeRemoveLabel(nodeId: Long, label: Label) extends GraphChange with Product with Serializable

  8. case class NodeRemoveProperty(nodeId: Long, key: String) extends GraphChange with Product with Serializable

  9. case class NodeSetLabel(nodeId: Long, label: Label) extends GraphChange with Product with Serializable

  10. case class NodeSetProperty(nodeId: Long, key: String, value: PropertyValue) extends GraphChange with Product with Serializable

  11. class Properties extends Map[String, PropertyValue] with MapLike[String, PropertyValue, Properties]

  12. class Relation extends AnyRef

  13. case class RelationDelete(relationId: Long) extends GraphChange with Product with Serializable

  14. case class RelationRemoveProperty(relationId: Long, key: String) extends GraphChange with Product with Serializable

  15. case class RelationSetProperty(relationId: Long, key: String, value: PropertyValue) extends GraphChange with Product with Serializable

  16. case class RelationType(name: String) extends Product with Serializable

Value Members

  1. object Graph

  2. object Node

  3. object Relation

Ungrouped