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. Protected

Instance Constructors

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

Value Members

  1. def addContainedNode(node: AbstractNodeType, localName: String, cardinality: Cardinality): NodeType
  2. def addInEdge(edge: EdgeType, outNode: AbstractNodeType, cardinalityIn: Cardinality = Cardinality.List, cardinalityOut: Cardinality = Cardinality.List): NodeType.this.type
    Definition Classes
    AbstractNodeType
  3. def addOutEdge(edge: EdgeType, inNode: AbstractNodeType, cardinalityOut: Cardinality = Cardinality.List, cardinalityIn: Cardinality = Cardinality.List): 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
  4. def addProperties(additional: Property*): NodeType.this.type
    Definition Classes
    HasProperties
  5. def addProperty(additional: Property): NodeType.this.type
    Definition Classes
    HasProperties
  6. lazy val className: String
    Definition Classes
    HasClassName
  7. lazy val classNameDb: String
  8. val comment: Option[String]
    Definition Classes
    AbstractNodeType
  9. def containedNodes: Seq[ContainedNode]
  10. def extendz: Seq[NodeBaseType]
    Definition Classes
    AbstractNodeType
  11. def extendz(additional: NodeBaseType*): NodeType.this.type
    Definition Classes
    AbstractNodeType
  12. def extendzRecursively: Seq[NodeBaseType]
    Definition Classes
    AbstractNodeType
  13. def inEdges: Seq[AdjacentNode]
    Definition Classes
    AbstractNodeType
  14. val name: String
    Definition Classes
    AbstractNodeTypeHasClassName
  15. def outEdges: Seq[AdjacentNode]
    Definition Classes
    AbstractNodeType
  16. def properties: Seq[Property]

    properties (including potentially inherited properties)

    properties (including potentially inherited properties)

    Definition Classes
    AbstractNodeTypeHasProperties
  17. def propertiesWithoutInheritance: Seq[Property]
    Definition Classes
    AbstractNodeType
  18. def protoId: Option[Int]
    Definition Classes
    HasOptionalProtoId
  19. def protoId(id: Int): NodeType.this.type
    Definition Classes
    HasOptionalProtoId
  20. val schemaInfo: SchemaInfo
    Definition Classes
    AbstractNodeTypeHasSchemaInfo
  21. def subtypes(allNodes: Set[AbstractNodeType]): Set[AbstractNodeType]

    all node types that extend this node

    all node types that extend this node

    Definition Classes
    NodeTypeAbstractNodeType
  22. def toString(): String
    Definition Classes
    NodeType → AnyRef → Any