class NodeType extends AbstractNodeType with HasOptionalProtoId

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NodeType
  2. HasOptionalProtoId
  3. AbstractNodeType
  4. HasSchemaInfo
  5. HasProperties
  6. HasClassName
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NodeType(name: String, comment: Option[String], schemaInfo: SchemaInfo)

Value Members

  1. def addContainedNode(node: AbstractNodeType, localName: String, cardinality: Cardinality, comment: String = ""): NodeType
  2. def addInEdge(edge: EdgeType, outNode: AbstractNodeType, cardinalityIn: Cardinality = EdgeType.Cardinality.List, cardinalityOut: Cardinality = EdgeType.Cardinality.List, stepNameIn: String = "", stepNameInDoc: String = "", stepNameOut: String = "", stepNameOutDoc: String = ""): NodeType.this.type
    Definition Classes
    AbstractNodeType
  3. def addMarkerTrait(name: String): NodeType.this.type
    Definition Classes
    AbstractNodeType
  4. def addOutEdge(edge: EdgeType, inNode: AbstractNodeType, cardinalityOut: Cardinality = EdgeType.Cardinality.List, cardinalityIn: Cardinality = EdgeType.Cardinality.List, stepNameOut: String = "", stepNameOutDoc: String = "", stepNameIn: String = "", stepNameInDoc: String = ""): NodeType.this.type

    note: allowing to define one outEdge for ONE inNode only - if you are looking for Union Types, please use NodeBaseTypes

    note: allowing to define one outEdge for ONE inNode only - if you are looking for Union Types, please use NodeBaseTypes

    Definition Classes
    AbstractNodeType
  5. def addProperties(additional: Property[_]*): NodeType.this.type
    Definition Classes
    HasProperties
  6. def addProperty(additional: Property[_]): NodeType.this.type
    Definition Classes
    HasProperties
  7. def className: String
    Definition Classes
    HasClassName
  8. lazy val classNameDb: String
  9. val comment: Option[String]
    Definition Classes
    AbstractNodeType
  10. def containedNodes: Seq[ContainedNode]
  11. def edges: Seq[AdjacentNode]
    Definition Classes
    AbstractNodeType
  12. def edges(direction: Direction.Value): Seq[AdjacentNode]
    Definition Classes
    AbstractNodeType
  13. def extendz: Seq[NodeBaseType]
    Definition Classes
    AbstractNodeType
  14. def extendz(additional: NodeBaseType*): NodeType.this.type
    Definition Classes
    AbstractNodeType
  15. def extendzRecursively: Seq[NodeBaseType]
    Definition Classes
    AbstractNodeType
  16. def inEdges: Seq[AdjacentNode]
    Definition Classes
    AbstractNodeType
  17. def markerTraits: Seq[MarkerTrait]
    Definition Classes
    AbstractNodeType
  18. val name: String
    Definition Classes
    AbstractNodeTypeHasClassName
  19. def outEdges: Seq[AdjacentNode]
    Definition Classes
    AbstractNodeType
  20. def properties: Seq[Property[_]]

    properties (including potentially inherited properties)

    properties (including potentially inherited properties)

    Definition Classes
    AbstractNodeTypeHasProperties
  21. def propertiesWithoutInheritance: Seq[Property[_]]
    Definition Classes
    AbstractNodeType
  22. def protoId: Option[Int]
    Definition Classes
    HasOptionalProtoId
  23. def protoId(id: Int): NodeType.this.type
    Definition Classes
    HasOptionalProtoId
  24. val schemaInfo: SchemaInfo
    Definition Classes
    AbstractNodeTypeHasSchemaInfo
  25. def starterName(name: String): NodeType.this.type
    Definition Classes
    AbstractNodeType
  26. def starterName: Option[String]

    the name for the generated node starter.

    the name for the generated node starter. Custom names can be assigned to prevent compile errors for e.g. type. Generation of node-starter can be suppressed by passing null, or by calling withoutStarter().

    Definition Classes
    AbstractNodeType
  27. def subtypes(allNodes: Set[AbstractNodeType]): Set[AbstractNodeType]

    all node types that extend this node

    all node types that extend this node

    Definition Classes
    NodeTypeAbstractNodeType
  28. def toString(): String
    Definition Classes
    NodeType → AnyRef → Any
  29. def withoutStarter(): NodeType.this.type
    Definition Classes
    AbstractNodeType