renesca

graph

package graph

Visibility
  1. Public
  2. All

Type Members

  1. class Graph extends AnyRef

  2. sealed trait GraphChange extends AnyRef

  3. trait GraphContentChange extends GraphChange

  4. trait GraphStructureChange extends GraphChange

  5. case class Id(_id: Long) extends Product with Serializable

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

  7. class Node extends AnyRef

  8. case class NodeAdd(localNodeId: Id) extends GraphStructureChange with Product with Serializable

  9. case class NodeDelete(nodeId: Id) extends GraphContentChange with Product with Serializable

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

  11. case class NodeRemoveLabel(nodeId: Id, label: Label) extends GraphContentChange with Product with Serializable

  12. case class NodeRemoveProperty(nodeId: Id, key: PropertyKey) extends GraphContentChange with Product with Serializable

  13. case class NodeSetLabel(nodeId: Id, label: Label) extends GraphContentChange with Product with Serializable

  14. case class NodeSetProperty(nodeId: Id, key: PropertyKey, value: PropertyValue) extends GraphContentChange with Product with Serializable

  15. class Nodes extends Set[Node] with SetLike[Node, Nodes]

  16. class Properties extends MutablePropertyMap with MapLike[PropertyKey, PropertyValue, Properties]

  17. class Relation extends AnyRef

  18. case class RelationAdd(relationId: Id, start: Id, end: Id, relationType: RelationType) extends GraphStructureChange with Product with Serializable

  19. case class RelationDelete(relationId: Id) extends GraphContentChange with Product with Serializable

  20. case class RelationRemoveProperty(relationId: Id, key: PropertyKey) extends GraphContentChange with Product with Serializable

  21. case class RelationSetProperty(relationId: Id, key: PropertyKey, value: PropertyValue) extends GraphContentChange with Product with Serializable

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

  23. class Relations extends Set[Relation] with SetLike[Relation, Relations]

Value Members

  1. object Graph

  2. object Id extends Serializable

  3. object Label extends Serializable

  4. object Node

  5. object Relation

  6. object RelationType extends Serializable

Ungrouped