AbstractNodeType

abstract
class AbstractNodeType(val name: String, val comment: Option[String], val schemaInfo: SchemaInfo) extends HasClassName with HasProperties with HasSchemaInfo
class Object
trait Matchable
class Any

Value members

Abstract methods

def subtypes(allNodes: Set[AbstractNodeType]): Set[AbstractNodeType]

all node types that extend this node

all node types that extend this node

Concrete methods

def addInEdge(edge: EdgeType, outNode: AbstractNodeType, cardinalityIn: Cardinality, cardinalityOut: Cardinality, stepNameIn: String, stepNameInDoc: String, stepNameOut: String, stepNameOutDoc: String): AbstractNodeType
def addOutEdge(edge: EdgeType, inNode: AbstractNodeType, cardinalityOut: Cardinality, cardinalityIn: Cardinality, stepNameOut: String, stepNameOutDoc: String, stepNameIn: String, stepNameInDoc: String): AbstractNodeType

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

def edges(direction: Value): Seq[AdjacentNode]
override
def properties: Seq[Property[_]]

properties (including potentially inherited properties)

properties (including potentially inherited properties)

Definition Classes

Inherited methods

Inherited from
HasProperties
Inherited from
HasProperties

Concrete fields

protected
protected
protected
val comment: Option[String]
val name: String

Inherited fields

protected
val _properties: Set[Property[_]]
Inherited from
HasProperties
lazy
val className: String
Inherited from
HasClassName