Enum BPDia.VAttr
- java.lang.Object
-
- java.lang.Enum<BPDia.VAttr>
-
- de.mid.innovator.srv2api.icw2bpdia.BPDia.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<BPDia.VAttr>
- Enclosing interface:
- BPDia
public static enum BPDia.VAttr extends java.lang.Enum<BPDia.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 BPDia.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BPDia.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IsMasterDia
public static final BPDia.VAttr IsMasterDia
-
OwnedArtifactNode
public static final BPDia.VAttr OwnedArtifactNode
-
OwnedArtifactNodesSorted
public static final BPDia.VAttr OwnedArtifactNodesSorted
-
OwnedArtifactNodesSortedByOrder
public static final BPDia.VAttr OwnedArtifactNodesSortedByOrder
-
OwnedGroupAssignment
public static final BPDia.VAttr OwnedGroupAssignment
-
OwnedItemNode
public static final BPDia.VAttr OwnedItemNode
-
OwnedItemNodesSorted
public static final BPDia.VAttr OwnedItemNodesSorted
-
OwnedItemNodesSortedByOrder
public static final BPDia.VAttr OwnedItemNodesSortedByOrder
-
OwnedMappingAssoc
public static final BPDia.VAttr OwnedMappingAssoc
-
OwnedMessageFlow
public static final BPDia.VAttr OwnedMessageFlow
-
OwnedMessageFlowsSortedByOrder
public static final BPDia.VAttr OwnedMessageFlowsSortedByOrder
-
OwnedStructureEdge
public static final BPDia.VAttr OwnedStructureEdge
-
OwnedSupportEdge
public static final BPDia.VAttr OwnedSupportEdge
-
OwnedSupportEdgesSortedByOrder
public static final BPDia.VAttr OwnedSupportEdgesSortedByOrder
-
OwnedTermEdge
public static final BPDia.VAttr OwnedTermEdge
-
OwnedTermNode
public static final BPDia.VAttr OwnedTermNode
-
OwnedTextNode
public static final BPDia.VAttr OwnedTextNode
-
OwnedTextNodesSortedByOrder
public static final BPDia.VAttr OwnedTextNodesSortedByOrder
-
OwnedViewContentEdge
public static final BPDia.VAttr OwnedViewContentEdge
-
OwnedViewNode
public static final BPDia.VAttr OwnedViewNode
-
OwnedViewNodesSorted
public static final BPDia.VAttr OwnedViewNodesSorted
-
OwnedViewNodesSortedByOrder
public static final BPDia.VAttr OwnedViewNodesSortedByOrder
-
OwningComponent
public static final BPDia.VAttr OwningComponent
-
OwningPackage
public static final BPDia.VAttr OwningPackage
-
OwningProcess
public static final BPDia.VAttr OwningProcess
-
-
Method Detail
-
values
public static BPDia.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 (BPDia.VAttr c : BPDia.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 BPDia.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
-
-