Package de.mid.innovator.srv2api.icw2bp
Enum BPTaskNode.VAttr
- java.lang.Object
-
- java.lang.Enum<BPTaskNode.VAttr>
-
- de.mid.innovator.srv2api.icw2bp.BPTaskNode.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<BPTaskNode.VAttr>
- Enclosing interface:
- BPTaskNode
public static enum BPTaskNode.VAttr extends java.lang.Enum<BPTaskNode.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 BPTaskNode.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BPTaskNode.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BPDia
public static final BPTaskNode.VAttr BPDia
-
CallAbleProcessElement
public static final BPTaskNode.VAttr CallAbleProcessElement
-
CalledGlobalTask
public static final BPTaskNode.VAttr CalledGlobalTask
-
CalledMasterProcessViewNode
public static final BPTaskNode.VAttr CalledMasterProcessViewNode
-
IsInstantiateReceiveTask
public static final BPTaskNode.VAttr IsInstantiateReceiveTask
-
MaskDefinition
public static final BPTaskNode.VAttr MaskDefinition
-
Operation
public static final BPTaskNode.VAttr Operation
-
OwnedCallAbleAssignment
public static final BPTaskNode.VAttr OwnedCallAbleAssignment
-
Script
public static final BPTaskNode.VAttr Script
-
ScriptLanguage
public static final BPTaskNode.VAttr ScriptLanguage
-
TaskImplementation
public static final BPTaskNode.VAttr TaskImplementation
-
TaskType
public static final BPTaskNode.VAttr TaskType
-
UnmappedIOAtCall
public static final BPTaskNode.VAttr UnmappedIOAtCall
-
UnmappedIOAtCalled
public static final BPTaskNode.VAttr UnmappedIOAtCalled
-
UnmappedInputAtCall
public static final BPTaskNode.VAttr UnmappedInputAtCall
-
UnmappedInputAtCalled
public static final BPTaskNode.VAttr UnmappedInputAtCalled
-
UnmappedOutputAtCall
public static final BPTaskNode.VAttr UnmappedOutputAtCall
-
UnmappedOutputAtCalled
public static final BPTaskNode.VAttr UnmappedOutputAtCalled
-
UnusedIO
public static final BPTaskNode.VAttr UnusedIO
-
UnusedInput
public static final BPTaskNode.VAttr UnusedInput
-
UnusedOutput
public static final BPTaskNode.VAttr UnusedOutput
-
UseCallActivity
public static final BPTaskNode.VAttr UseCallActivity
-
-
Method Detail
-
values
public static BPTaskNode.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 (BPTaskNode.VAttr c : BPTaskNode.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 BPTaskNode.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
-
-