Package de.mid.innovator.srv2api.icw2ac
Enum ACActivityEdge.VAttr
- java.lang.Object
-
- java.lang.Enum<ACActivityEdge.VAttr>
-
- de.mid.innovator.srv2api.icw2ac.ACActivityEdge.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<ACActivityEdge.VAttr>
- Enclosing interface:
- ACActivityEdge
public static enum ACActivityEdge.VAttr extends java.lang.Enum<ACActivityEdge.VAttr> implements K_VATTR
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Activity
Guard
GuardLanguage
GuardSpecification
InGroupExplicit
OwnerBehavior
Source
Target
Weight
WeightLanguage
WeightSpecification
-
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 ACActivityEdge.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ACActivityEdge.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Activity
public static final ACActivityEdge.VAttr Activity
-
Guard
public static final ACActivityEdge.VAttr Guard
-
GuardLanguage
public static final ACActivityEdge.VAttr GuardLanguage
-
GuardSpecification
public static final ACActivityEdge.VAttr GuardSpecification
-
InGroupExplicit
public static final ACActivityEdge.VAttr InGroupExplicit
-
OwnerBehavior
public static final ACActivityEdge.VAttr OwnerBehavior
-
Source
public static final ACActivityEdge.VAttr Source
-
Target
public static final ACActivityEdge.VAttr Target
-
Weight
public static final ACActivityEdge.VAttr Weight
-
WeightLanguage
public static final ACActivityEdge.VAttr WeightLanguage
-
WeightSpecification
public static final ACActivityEdge.VAttr WeightSpecification
-
-
Method Detail
-
values
public static ACActivityEdge.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 (ACActivityEdge.VAttr c : ACActivityEdge.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 ACActivityEdge.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
-
-