Package de.mid.innovator.srv2api.icw2ac
Enum ANInputPin.VAttr
- java.lang.Object
-
- java.lang.Enum<ANInputPin.VAttr>
-
- de.mid.innovator.srv2api.icw2ac.ANInputPin.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<ANInputPin.VAttr>
- Enclosing interface:
- ANInputPin
public static enum ANInputPin.VAttr extends java.lang.Enum<ANInputPin.VAttr> implements K_VATTR
-
-
Enum Constant Summary
-
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 ANInputPin.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ANInputPin.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Action
public static final ANInputPin.VAttr Action
-
AddStructuralFeatureValueAction
public static final ANInputPin.VAttr AddStructuralFeatureValueAction
-
CallOperationAction
public static final ANInputPin.VAttr CallOperationAction
-
ClearAssociationAction
public static final ANInputPin.VAttr ClearAssociationAction
-
DestroyObjectAction
public static final ANInputPin.VAttr DestroyObjectAction
-
InvocationAction
public static final ANInputPin.VAttr InvocationAction
-
LinkAction
public static final ANInputPin.VAttr LinkAction
-
LinkEndCreationData
public static final ANInputPin.VAttr LinkEndCreationData
-
LinkEndData
public static final ANInputPin.VAttr LinkEndData
-
LinkEndDestructionData
public static final ANInputPin.VAttr LinkEndDestructionData
-
OpaqueAction
public static final ANInputPin.VAttr OpaqueAction
-
QualifierValue
public static final ANInputPin.VAttr QualifierValue
-
RaiseExceptionAction
public static final ANInputPin.VAttr RaiseExceptionAction
-
RemoveStructuralFeatureValueAction
public static final ANInputPin.VAttr RemoveStructuralFeatureValueAction
-
ReplyAction
public static final ANInputPin.VAttr ReplyAction
-
ReplyActionOfValue
public static final ANInputPin.VAttr ReplyActionOfValue
-
SendObjectAction
public static final ANInputPin.VAttr SendObjectAction
-
SendSignalAction
public static final ANInputPin.VAttr SendSignalAction
-
StructuralFeatureAction
public static final ANInputPin.VAttr StructuralFeatureAction
-
StructuredActivityNode
public static final ANInputPin.VAttr StructuredActivityNode
-
TestIdentityActionFirst
public static final ANInputPin.VAttr TestIdentityActionFirst
-
TestIdentityActionSecond
public static final ANInputPin.VAttr TestIdentityActionSecond
-
Transmitter
public static final ANInputPin.VAttr Transmitter
-
UnmarshallAction
public static final ANInputPin.VAttr UnmarshallAction
-
WriteStructuralFeatureAction
public static final ANInputPin.VAttr WriteStructuralFeatureAction
-
-
Method Detail
-
values
public static ANInputPin.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 (ANInputPin.VAttr c : ANInputPin.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 ANInputPin.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
-
-