Class EntitySchemaNode
Holds the details for a node in an entity schema structure diagram of the whole system, including which entity is in that node and any highlighting .
Inheritance
System.Object
EntitySchemaNode
Implements
System.IComparable<EntitySchemaNode>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: LemonEdge.API.Entities.Helpers
Assembly: API.dll
Syntax
public class EntitySchemaNode : IComparable<EntitySchemaNode>
Properties
Descriptor
The descriptor this node is for
Declaration
public EntityDescriptor Descriptor { get; }
Property Value
Type | Description |
---|---|
EntityDescriptor |
Highlight
Whether or not this node is to be highlighted as part of a path through the schema
Declaration
public bool Highlight { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
CompareTo(EntitySchemaNode)
Declaration
public int CompareTo(EntitySchemaNode other)
Parameters
Type | Name | Description |
---|---|---|
EntitySchemaNode | other |
Returns
Type | Description |
---|---|
System.Int32 |
ToString()
The name of the entity
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | The name of the entity |
Overrides
System.Object.ToString()
Implements
System.IComparable<T>