abstract class AbstractNodeType extends HasClassName with HasProperties with HasSchemaInfo
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- AbstractNodeType
- HasSchemaInfo
- HasProperties
- HasClassName
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new AbstractNodeType(name: String, comment: Option[String], schemaInfo: SchemaInfo)
Abstract Value Members
- abstract def subtypes(allNodes: Set[AbstractNodeType]): Set[AbstractNodeType]
all node types that extend this node
Concrete Value Members
- def addInEdge(edge: EdgeType, outNode: AbstractNodeType, cardinalityIn: Cardinality = EdgeType.Cardinality.List, cardinalityOut: Cardinality = EdgeType.Cardinality.List): AbstractNodeType.this.type
- def addOutEdge(edge: EdgeType, inNode: AbstractNodeType, cardinalityOut: Cardinality = EdgeType.Cardinality.List, cardinalityIn: Cardinality = EdgeType.Cardinality.List): AbstractNodeType.this.type
note: allowing to define one outEdge for ONE inNode only - if you are looking for Union Types, please use NodeBaseTypes
- def addProperties(additional: Property[_]*): AbstractNodeType.this.type
- Definition Classes
- HasProperties
- def addProperty(additional: Property[_]): AbstractNodeType.this.type
- Definition Classes
- HasProperties
- lazy val className: String
- Definition Classes
- HasClassName
- val comment: Option[String]
- def edges(direction: Direction.Value): Seq[AdjacentNode]
- def extendz: Seq[NodeBaseType]
- def extendz(additional: NodeBaseType*): AbstractNodeType.this.type
- def extendzRecursively: Seq[NodeBaseType]
- def inEdges: Seq[AdjacentNode]
- val name: String
- Definition Classes
- AbstractNodeType → HasClassName
- def outEdges: Seq[AdjacentNode]
- def properties: Seq[Property[_]]
properties (including potentially inherited properties)
properties (including potentially inherited properties)
- Definition Classes
- AbstractNodeType → HasProperties
- def propertiesWithoutInheritance: Seq[Property[_]]
- val schemaInfo: SchemaInfo
- Definition Classes
- AbstractNodeType → HasSchemaInfo