abstract class Node extends Element with NodeOrDetachedNode

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Node
  2. NodeOrDetachedNode
  3. Element
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Node()

Abstract Value Members

  1. abstract def addEdgeImpl(label: String, inNode: Node, keyValues: Map[String, AnyRef]): Edge
    Attributes
    protected[overflowdb]
  2. abstract def addEdgeImpl(label: String, inNode: Node, keyValues: <repeated...>[AnyRef]): Edge
    Attributes
    protected[overflowdb]
  3. abstract def addEdgeSilentImpl(label: String, inNode: Node, keyValues: Map[String, AnyRef]): Unit
    Attributes
    protected[overflowdb]
  4. abstract def addEdgeSilentImpl(label: String, inNode: Node, keyValues: <repeated...>[AnyRef]): Unit
    Attributes
    protected[overflowdb]
  5. abstract def both(edgeLabels: <repeated...>[String]): Iterator[Node]
  6. abstract def both(): Iterator[Node]
  7. abstract def bothE(edgeLabels: <repeated...>[String]): Iterator[Edge]
  8. abstract def bothE(): Iterator[Edge]
  9. abstract def graph(): Graph
    Definition Classes
    Element
  10. abstract def id(): Long
  11. abstract def in(edgeLabels: <repeated...>[String]): Iterator[Node]
  12. abstract def in(): Iterator[Node]
  13. abstract def inE(edgeLabels: <repeated...>[String]): Iterator[Edge]
  14. abstract def inE(): Iterator[Edge]
  15. abstract def label(): String
    Definition Classes
    Element
  16. abstract def out(edgeLabels: <repeated...>[String]): Iterator[Node]
  17. abstract def out(): Iterator[Node]
  18. abstract def outE(edgeLabels: <repeated...>[String]): Iterator[Edge]
  19. abstract def outE(): Iterator[Edge]
  20. abstract def propertiesMap(): Map[String, AnyRef]

    Map with all properties, including the default property values which haven't been explicitly set

    Map with all properties, including the default property values which haven't been explicitly set

    Definition Classes
    Element
  21. abstract def property[A](key: PropertyKey[A]): A
    Definition Classes
    Element
  22. abstract def property(key: String): AnyRef
    Definition Classes
    Element
  23. abstract def propertyKeys(): Set[String]
    Definition Classes
    Element
  24. abstract def propertyOption(key: String): Optional[AnyRef]
    Definition Classes
    Element
  25. abstract def propertyOption[A](key: PropertyKey[A]): Optional[A]
    Definition Classes
    Element
  26. abstract def removeImpl(): Unit
    Attributes
    protected[overflowdb]
    Definition Classes
    Element
  27. abstract def removePropertyImpl(key: String): Unit
    Attributes
    protected[overflowdb]
    Definition Classes
    Element
  28. abstract def setPropertyImpl(property: Property[_ <: AnyRef]): Unit
    Attributes
    protected[overflowdb]
    Definition Classes
    Element
  29. abstract def setPropertyImpl[A](key: PropertyKey[A], value: A): Unit
    Attributes
    protected[overflowdb]
    Definition Classes
    Element
  30. abstract def setPropertyImpl(key: String, value: AnyRef): Unit
    Attributes
    protected[overflowdb]
    Definition Classes
    Element

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def _initializeFromDetached(data: DetachedNodeData, mapper: Function[DetachedNodeData, Node]): Unit
    Attributes
    protected[overflowdb]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. def property[A](key: PropertyKey[A], defaultValue: A): A
    Definition Classes
    Element
  17. def property[A](key: String, defaultValue: A): A
    Definition Classes
    Element
  18. def propertyDefaultValue(propertyKey: String): AnyRef

    override this in specific element class, to define a default value

    override this in specific element class, to define a default value

    Definition Classes
    Element
  19. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. final def addEdge(label: String, inNode: Node, keyValues: Map[String, AnyRef]): Edge

    Add an outgoing edge to the node with provided label and edge properties as key/value pairs.

    Add an outgoing edge to the node with provided label and edge properties as key/value pairs.

    Annotations
    @Deprecated
    Deprecated
  2. final def addEdge(label: String, inNode: Node, keyValues: <repeated...>[AnyRef]): Edge

    Add an outgoing edge to the node with provided label and edge properties as key/value pairs.

    Add an outgoing edge to the node with provided label and edge properties as key/value pairs. These key/values must be provided in an even number where the odd numbered arguments are String property keys and the even numbered arguments are the related property values.

    Annotations
    @Deprecated
    Deprecated
  3. final def addEdgeSilent(label: String, inNode: Node, keyValues: Map[String, AnyRef]): Unit

    Add an outgoing edge to the node with provided label and edge properties as key/value pairs.

    Add an outgoing edge to the node with provided label and edge properties as key/value pairs. Just like

    addEdge2}}, but doesn't instantiate and return a dummy edge
    Annotations
    @Deprecated
    Deprecated
  4. final def addEdgeSilent(label: String, inNode: Node, keyValues: <repeated...>[AnyRef]): Unit

    Add an outgoing edge to the node with provided label and edge properties as key/value pairs.

    Add an outgoing edge to the node with provided label and edge properties as key/value pairs. These key/values must be provided in an even number where the odd numbered arguments are String property keys and the even numbered arguments are the related property values. Just like

    addEdge2}}, but doesn't instantiate and return a dummy edge
    Annotations
    @Deprecated
    Deprecated
  5. final def remove(): Unit
    Definition Classes
    Element
    Annotations
    @Deprecated
    Deprecated
  6. final def removeProperty(key: String): Unit
    Definition Classes
    Element
    Annotations
    @Deprecated
    Deprecated
  7. final def setProperty(property: Property[_ <: AnyRef]): Unit
    Definition Classes
    Element
    Annotations
    @Deprecated
    Deprecated
  8. final def setProperty[A](key: PropertyKey[A], value: A): Unit
    Definition Classes
    Element
    Annotations
    @Deprecated
    Deprecated
  9. final def setProperty(key: String, value: AnyRef): Unit
    Definition Classes
    Element
    Annotations
    @Deprecated
    Deprecated

Inherited from NodeOrDetachedNode

Inherited from Element

Inherited from AnyRef

Inherited from Any

Ungrouped