Enum CLUseCaseDia.VAttr
- java.lang.Object
-
- java.lang.Enum<CLUseCaseDia.VAttr>
-
- de.mid.innovator.srv2api.icw2cldia.CLUseCaseDia.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<CLUseCaseDia.VAttr>
- Enclosing interface:
- CLUseCaseDia
public static enum CLUseCaseDia.VAttr extends java.lang.Enum<CLUseCaseDia.VAttr> implements K_VATTR
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AssocEndEdges
OwnedActorNode
OwnedActorNodesSorted
OwnedSubjectNode
OwnedSubjectNodesSorted
OwnedUseCaseNode
OwnedUseCaseNodesSorted
-
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 CLUseCaseDia.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CLUseCaseDia.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AssocEndEdges
public static final CLUseCaseDia.VAttr AssocEndEdges
-
OwnedActorNode
public static final CLUseCaseDia.VAttr OwnedActorNode
-
OwnedActorNodesSorted
public static final CLUseCaseDia.VAttr OwnedActorNodesSorted
-
OwnedSubjectNode
public static final CLUseCaseDia.VAttr OwnedSubjectNode
-
OwnedSubjectNodesSorted
public static final CLUseCaseDia.VAttr OwnedSubjectNodesSorted
-
OwnedUseCaseNode
public static final CLUseCaseDia.VAttr OwnedUseCaseNode
-
OwnedUseCaseNodesSorted
public static final CLUseCaseDia.VAttr OwnedUseCaseNodesSorted
-
-
Method Detail
-
values
public static CLUseCaseDia.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 (CLUseCaseDia.VAttr c : CLUseCaseDia.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 CLUseCaseDia.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
-
-