Click or drag to resize

AttributeKind Enumeration

Specifies the kind of a GrGen attribute.

Namespace:  de.unika.ipd.grGen.libGr
Assembly:  libGr (in libGr.dll) Version: GrGen.NET 7.2
Syntax
C#
public enum AttributeKind
Members
  Member nameValueDescription
ByteAttr0The attribute is a byte (signed).
ShortAttr1The attribute is a short.
IntegerAttr2The attribute is an integer.
LongAttr3The attribute is a long.
BooleanAttr4The attribute is a boolean.
StringAttr5The attribute is a string.
EnumAttr6The attribute is an enum.
FloatAttr7The attribute is a float.
DoubleAttr8The attribute is a double.
ObjectAttr9The attribute is an object (this includes external class/attribute types).
MapAttr10The attribute is a map.
SetAttr11The attribute is a set.
ArrayAttr12The attribute is an array.
DequeAttr13The attribute is a deque.
NodeAttr14The attribute is a node (only valid for set/map/array/deque key/value type).
EdgeAttr15The attribute is an edge (only valid for set/map/array/deque key/value type).
GraphAttr16The attribute is a graph (created as a subgraph of the host graph).
InternalClassObjectAttr17The attribute is an internal class object/attribute type (non-external, non-node/edge).
InternalClassTransientObjectAttr18The attribute is an internal class transient object/attribute type (non-external, non-node/edge). Can only appear within transient object classes (not within node class, edge class, class).
See Also