enum Objects

This class provides the basis for all enumerated classes in the Modeler API. Note that enum names are not case-sensitive.

e.equals(object) : boolean

object (Object): the other object.

Returns True if the supplied object is equal to this object.

e.getName() : string

Returns the name of the enumeration. Same as toString().

e.hashCode() : int

Returns the hash code for this object.

e.isUnknown() : boolean

Returns True if this enumeration value represents an unknown or undefined object or False otherwise. An enumeration may contain at most one value that represents an unknown or undefined value.

e.toString() : string

Returns the name of the enumeration. Same as getName().