Enum MEHierarchyAble.VAttr
- java.lang.Object
-
- java.lang.Enum<MEHierarchyAble.VAttr>
-
- de.mid.innovator.srv2api.icw2model.MEHierarchyAble.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<MEHierarchyAble.VAttr>
- Enclosing interface:
- MEHierarchyAble
public static enum MEHierarchyAble.VAttr extends java.lang.Enum<MEHierarchyAble.VAttr> implements K_VATTR
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ClassifierUsedAsType
NestedHierarchyAble
OwnedAnalysisDia
OwnedDiaWhiteboard
OwnedGCDia
OwnedProxy
OwnedVersionAble
OwnedVersionAbleDia
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
toInt()
Returns a specific integer value for the enumeration constant.static MEHierarchyAble.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MEHierarchyAble.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ClassifierUsedAsType
public static final MEHierarchyAble.VAttr ClassifierUsedAsType
-
NestedHierarchyAble
public static final MEHierarchyAble.VAttr NestedHierarchyAble
-
OwnedAnalysisDia
public static final MEHierarchyAble.VAttr OwnedAnalysisDia
-
OwnedDiaWhiteboard
public static final MEHierarchyAble.VAttr OwnedDiaWhiteboard
-
OwnedGCDia
public static final MEHierarchyAble.VAttr OwnedGCDia
-
OwnedProxy
public static final MEHierarchyAble.VAttr OwnedProxy
-
OwnedVersionAble
public static final MEHierarchyAble.VAttr OwnedVersionAble
-
OwnedVersionAbleDia
public static final MEHierarchyAble.VAttr OwnedVersionAbleDia
-
-
Method Detail
-
values
public static MEHierarchyAble.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 (MEHierarchyAble.VAttr c : MEHierarchyAble.VAttr.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MEHierarchyAble.VAttr valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-