Package de.mid.innovator.srv2api.icw2bp
Enum BPEventNode.VAttr
- java.lang.Object
-
- java.lang.Enum<BPEventNode.VAttr>
-
- de.mid.innovator.srv2api.icw2bp.BPEventNode.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<BPEventNode.VAttr>
- Enclosing interface:
- BPEventNode
public static enum BPEventNode.VAttr extends java.lang.Enum<BPEventNode.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 BPEventNode.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BPEventNode.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ActivityNode
public static final BPEventNode.VAttr ActivityNode
-
ApplyInCalculation
public static final BPEventNode.VAttr ApplyInCalculation
-
AverageDegreeOfCompletion
public static final BPEventNode.VAttr AverageDegreeOfCompletion
-
BPDia
public static final BPEventNode.VAttr BPDia
-
CatchThrowCorrespondingEvent
public static final BPEventNode.VAttr CatchThrowCorrespondingEvent
-
CostsPerExecution
public static final BPEventNode.VAttr CostsPerExecution
-
EventDataObject
public static final BPEventNode.VAttr EventDataObject
-
EventDefinition
public static final BPEventNode.VAttr EventDefinition
-
EventProperty
public static final BPEventNode.VAttr EventProperty
-
EventType
public static final BPEventNode.VAttr EventType
-
ExecutionTime
public static final BPEventNode.VAttr ExecutionTime
-
FrequencyPerYear
public static final BPEventNode.VAttr FrequencyPerYear
-
IncomingDataIOAssociation
public static final BPEventNode.VAttr IncomingDataIOAssociation
-
InputToThrowEvent
public static final BPEventNode.VAttr InputToThrowEvent
-
IsEventTypeDynamic
public static final BPEventNode.VAttr IsEventTypeDynamic
-
IsInterrupting
public static final BPEventNode.VAttr IsInterrupting
-
IsMultiple
public static final BPEventNode.VAttr IsMultiple
-
IsParallelMultiple
public static final BPEventNode.VAttr IsParallelMultiple
-
LinkEventDefinition
public static final BPEventNode.VAttr LinkEventDefinition
-
OutgoingCompensationAssociation
public static final BPEventNode.VAttr OutgoingCompensationAssociation
-
OutgoingDataIOAssociation
public static final BPEventNode.VAttr OutgoingDataIOAssociation
-
OutputOfCatchEvent
public static final BPEventNode.VAttr OutputOfCatchEvent
-
OwnedDataAssociation
public static final BPEventNode.VAttr OwnedDataAssociation
-
VisibleIncomingItemAwareElement
public static final BPEventNode.VAttr VisibleIncomingItemAwareElement
-
VisibleOutgoingItemAwareElement
public static final BPEventNode.VAttr VisibleOutgoingItemAwareElement
-
-
Method Detail
-
values
public static BPEventNode.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 (BPEventNode.VAttr c : BPEventNode.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 BPEventNode.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
-
-