de.mid.innovator.srv2api.icw2elem
Enum ELM2Attribute.VAttr

java.lang.Object
  extended by java.lang.Enum<ELM2Attribute.VAttr>
      extended by de.mid.innovator.srv2api.icw2elem.ELM2Attribute.VAttr
All Implemented Interfaces:
K_VATTR, Serializable, Comparable<ELM2Attribute.VAttr>
Enclosing interface:
ELM2Attribute

public static enum ELM2Attribute.VAttr
extends Enum<ELM2Attribute.VAttr>
implements K_VATTR


Enum Constant Summary
AttrIdentification
           
CWhat
           
GenericAttribute
           
GenericRelatedAttribute
           
IsCnstrAble
           
IsFlowText
           
IsNullable
           
IsRangeConfigAble
           
IsRuntimeOnly
           
IsToVersionRoot
           
LocalizedValue
           
M2AttributeSets
           
M2Class
           
M2TypeOfKind
           
M2TypeOfMode
           
M3Type
           
MoreRangeAsList
           
MoreRangeAsTree
           
NotToLocalizeContainer
           
OhRefType
           
OnlyCurrentValueIsValid
           
SortAble
           
SortOrderGlobal
           
TypingM2Type
           
VAttr
           
VWhat
           
WithPattern
           
 
Method Summary
 int toInt()
          Returns a specific integer value for the enumeration constant.
static ELM2Attribute.VAttr valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ELM2Attribute.VAttr[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface de.mid.innovator.srv2api.icw2elem.K_VATTR
name, toString
 

Enum Constant Detail

AttrIdentification

public static final ELM2Attribute.VAttr AttrIdentification

CWhat

public static final ELM2Attribute.VAttr CWhat

GenericAttribute

public static final ELM2Attribute.VAttr GenericAttribute

GenericRelatedAttribute

public static final ELM2Attribute.VAttr GenericRelatedAttribute

IsCnstrAble

public static final ELM2Attribute.VAttr IsCnstrAble

IsFlowText

public static final ELM2Attribute.VAttr IsFlowText

IsNullable

public static final ELM2Attribute.VAttr IsNullable

IsRangeConfigAble

public static final ELM2Attribute.VAttr IsRangeConfigAble

IsRuntimeOnly

public static final ELM2Attribute.VAttr IsRuntimeOnly

IsToVersionRoot

public static final ELM2Attribute.VAttr IsToVersionRoot

LocalizedValue

public static final ELM2Attribute.VAttr LocalizedValue

M2AttributeSets

public static final ELM2Attribute.VAttr M2AttributeSets

M2Class

public static final ELM2Attribute.VAttr M2Class

M2TypeOfKind

public static final ELM2Attribute.VAttr M2TypeOfKind

M2TypeOfMode

public static final ELM2Attribute.VAttr M2TypeOfMode

M3Type

public static final ELM2Attribute.VAttr M3Type

MoreRangeAsList

public static final ELM2Attribute.VAttr MoreRangeAsList

MoreRangeAsTree

public static final ELM2Attribute.VAttr MoreRangeAsTree

NotToLocalizeContainer

public static final ELM2Attribute.VAttr NotToLocalizeContainer

OhRefType

public static final ELM2Attribute.VAttr OhRefType

OnlyCurrentValueIsValid

public static final ELM2Attribute.VAttr OnlyCurrentValueIsValid

SortAble

public static final ELM2Attribute.VAttr SortAble

SortOrderGlobal

public static final ELM2Attribute.VAttr SortOrderGlobal

TypingM2Type

public static final ELM2Attribute.VAttr TypingM2Type

VAttr

public static final ELM2Attribute.VAttr VAttr

VWhat

public static final ELM2Attribute.VAttr VWhat

WithPattern

public static final ELM2Attribute.VAttr WithPattern
Method Detail

toInt

public int toInt()
Returns a specific integer value for the enumeration constant. This method is needed to serialize enumeration constants.

Specified by:
toInt in interface K_VATTR
Returns:
the specified value of the enumeration constant

valueOf

public static ELM2Attribute.VAttr valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

values

public static ELM2Attribute.VAttr[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ELM2Attribute.VAttr c : ELM2Attribute.VAttr.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared