Enum BPDiaProcessViewNode.VAttr
- java.lang.Object
-
- java.lang.Enum<BPDiaProcessViewNode.VAttr>
-
- de.mid.innovator.srv2api.icw2bpdia.BPDiaProcessViewNode.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<BPDiaProcessViewNode.VAttr>
- Enclosing interface:
- BPDiaProcessViewNode
public static enum BPDiaProcessViewNode.VAttr extends java.lang.Enum<BPDiaProcessViewNode.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 BPDiaProcessViewNode.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BPDiaProcessViewNode.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CallActivityNode
public static final BPDiaProcessViewNode.VAttr CallActivityNode
-
IsHiddenObjectFlow
public static final BPDiaProcessViewNode.VAttr IsHiddenObjectFlow
-
LaneSet
public static final BPDiaProcessViewNode.VAttr LaneSet
-
OwnedAssocEdge
public static final BPDiaProcessViewNode.VAttr OwnedAssocEdge
-
OwnedAssocEdgesSortedByOrder
public static final BPDiaProcessViewNode.VAttr OwnedAssocEdgesSortedByOrder
-
OwnedDataAssocEdge
public static final BPDiaProcessViewNode.VAttr OwnedDataAssocEdge
-
OwnedDataAssocEdgesInViewSortedByOrder
public static final BPDiaProcessViewNode.VAttr OwnedDataAssocEdgesInViewSortedByOrder
-
OwnedDataAssocEdgesSortedByOrder
public static final BPDiaProcessViewNode.VAttr OwnedDataAssocEdgesSortedByOrder
-
OwnedDataNode
public static final BPDiaProcessViewNode.VAttr OwnedDataNode
-
OwnedDataNodesInViewSortedByOrder
public static final BPDiaProcessViewNode.VAttr OwnedDataNodesInViewSortedByOrder
-
OwnedDataNodesSortedByOrder
public static final BPDiaProcessViewNode.VAttr OwnedDataNodesSortedByOrder
-
OwnedLaneNode
public static final BPDiaProcessViewNode.VAttr OwnedLaneNode
-
OwnedLaneNodesInViewSortedByOrder
public static final BPDiaProcessViewNode.VAttr OwnedLaneNodesInViewSortedByOrder
-
OwnedLaneNodesSortedByOrder
public static final BPDiaProcessViewNode.VAttr OwnedLaneNodesSortedByOrder
-
OwnedRedundantEdge
public static final BPDiaProcessViewNode.VAttr OwnedRedundantEdge
-
OwnedRenderingNode
public static final BPDiaProcessViewNode.VAttr OwnedRenderingNode
-
OwnedSequenceFlow
public static final BPDiaProcessViewNode.VAttr OwnedSequenceFlow
-
OwnedSequenceFlowNode
public static final BPDiaProcessViewNode.VAttr OwnedSequenceFlowNode
-
OwnedSequenceFlowNodesInViewSortedByOrder
public static final BPDiaProcessViewNode.VAttr OwnedSequenceFlowNodesInViewSortedByOrder
-
OwnedSequenceFlowNodesSortedByOrder
public static final BPDiaProcessViewNode.VAttr OwnedSequenceFlowNodesSortedByOrder
-
OwnedSequenceFlowsInViewSortedByOrder
public static final BPDiaProcessViewNode.VAttr OwnedSequenceFlowsInViewSortedByOrder
-
OwnedSequenceFlowsSortedByOrder
public static final BPDiaProcessViewNode.VAttr OwnedSequenceFlowsSortedByOrder
-
OwningParticipantNode
public static final BPDiaProcessViewNode.VAttr OwningParticipantNode
-
Process
public static final BPDiaProcessViewNode.VAttr Process
-
-
Method Detail
-
values
public static BPDiaProcessViewNode.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 (BPDiaProcessViewNode.VAttr c : BPDiaProcessViewNode.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 BPDiaProcessViewNode.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
-
-