Enum ELValSpecString.VAttr
- java.lang.Object
-
- java.lang.Enum<ELValSpecString.VAttr>
-
- de.mid.innovator.srv2api.icw2elem.ELValSpecString.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<ELValSpecString.VAttr>
- Enclosing interface:
- ELValSpecString
public static enum ELValSpecString.VAttr extends java.lang.Enum<ELValSpecString.VAttr> implements K_VATTR
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OwningClassPathAction
OwningEngineeringTag
OwningRepositoryInactivity
OwningVirtualMachineAction
StringValue
TypingM2TypeString
-
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 ELValSpecString.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ELValSpecString.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OwningClassPathAction
public static final ELValSpecString.VAttr OwningClassPathAction
-
OwningEngineeringTag
public static final ELValSpecString.VAttr OwningEngineeringTag
-
OwningRepositoryInactivity
public static final ELValSpecString.VAttr OwningRepositoryInactivity
-
OwningVirtualMachineAction
public static final ELValSpecString.VAttr OwningVirtualMachineAction
-
StringValue
public static final ELValSpecString.VAttr StringValue
-
TypingM2TypeString
public static final ELValSpecString.VAttr TypingM2TypeString
-
-
Method Detail
-
values
public static ELValSpecString.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 (ELValSpecString.VAttr c : ELValSpecString.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 ELValSpecString.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
-
-