object Change

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

Type Members

  1. final case class CreateEdge(src: CpgNode, dst: CpgNode, label: String, packedProperties: PackedProperties) extends Change with Product with Serializable
  2. final case class CreateNode(node: NewNode) extends Change with Product with Serializable
  3. sealed trait NodeKind extends AnyRef
  4. final case class RemoveEdge(edge: Edge) extends Change with Product with Serializable
  5. final case class RemoveEdgeProperty(edge: Edge, propertyKey: String) extends Change with Product with Serializable
  6. final case class RemoveNode(nodeId: Long) extends Change with Product with Serializable
  7. final case class RemoveNodeProperty(nodeId: Long, propertyKey: String) extends Change with Product with Serializable
  8. final case class SetEdgeProperty(edge: Edge, propertyKey: String, propertyValue: AnyRef) extends Change with Product with Serializable
  9. final case class SetNodeProperty(node: StoredNode, key: String, value: AnyRef) extends Change with Product with Serializable

Value Members

  1. object CreateEdge extends Serializable
  2. object NodeKind