Enum CLParameter.VAttr
- java.lang.Object
-
- java.lang.Enum<CLParameter.VAttr>
-
- de.mid.innovator.srv2api.icw2class.CLParameter.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<CLParameter.VAttr>
- Enclosing interface:
- CLParameter
public static enum CLParameter.VAttr extends java.lang.Enum<CLParameter.VAttr> implements K_VATTR
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ActivityParameterNode
DefaultValue
Direction
Effect
IsException
IsStream
OwnerFormalParam
OwningBehavior
OwningOperation
OwningParameterAble
ParameterSet
TypingClassifier
TypingTemplateParameterAbleClass
-
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 CLParameter.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CLParameter.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ActivityParameterNode
public static final CLParameter.VAttr ActivityParameterNode
-
DefaultValue
public static final CLParameter.VAttr DefaultValue
-
Direction
public static final CLParameter.VAttr Direction
-
Effect
public static final CLParameter.VAttr Effect
-
IsException
public static final CLParameter.VAttr IsException
-
IsStream
public static final CLParameter.VAttr IsStream
-
OwnerFormalParam
public static final CLParameter.VAttr OwnerFormalParam
-
OwningBehavior
public static final CLParameter.VAttr OwningBehavior
-
OwningOperation
public static final CLParameter.VAttr OwningOperation
-
OwningParameterAble
public static final CLParameter.VAttr OwningParameterAble
-
ParameterSet
public static final CLParameter.VAttr ParameterSet
-
TypingClassifier
public static final CLParameter.VAttr TypingClassifier
-
TypingTemplateParameterAbleClass
public static final CLParameter.VAttr TypingTemplateParameterAbleClass
-
-
Method Detail
-
values
public static CLParameter.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 (CLParameter.VAttr c : CLParameter.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 CLParameter.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
-
-