de.mid.innovator.srv2api.icw2bp
Enum BPProcess.VAttr

java.lang.Object
  extended by java.lang.Enum<BPProcess.VAttr>
      extended by de.mid.innovator.srv2api.icw2bp.BPProcess.VAttr
All Implemented Interfaces:
K_VATTR, Serializable, Comparable<BPProcess.VAttr>
Enclosing interface:
BPProcess

public static enum BPProcess.VAttr
extends Enum<BPProcess.VAttr>
implements K_VATTR


Enum Constant Summary
BPDia
           
CallOfCallAble
           
Collaboration
           
CreateOrientation
           
DefinitionDiagramProcessViewNode
           
DiaParticipantNodeVisibleAndSelectAble
           
DiaTaskNodeVisibleAndSelectAble
           
EventDefinitionUsed
           
HasDefinitionDiagram
           
HasHiddenViewNodes
           
HasNonVirtualSyncViewNodes
           
IncomingSupport
           
IsClosed
           
ItemAwareElementForDefinition
           
ItemDefinitionUsed
           
MasterProcessViewNode
           
MessageUsed
           
NonMasterProcessViewNode
           
NonSynchronizedProcessViewNode
           
OutgoingSupport
           
OwnedBPDia
           
OwnedLaneSet
           
OwnedLinkEventDefinitions
           
OwnedResourceAssignment
           
OwnedReuseAbleElement
           
Participant
           
ProcessCalled
           
ProcessCalledTransitive
           
ProcessCalling
           
ProcessCallingTransitive
           
ProcessProperty
           
ProcessType
           
ProcessViewCompletelyMaintained
           
ProcessViewIncomplete
           
ProcessViewIncorrect
           
ResponsibleResource
           
ServiceTask
           
SynchronizedProcessViewNode
           
UseResources
           
 
Method Summary
 int toInt()
          Returns a specific integer value for the enumeration constant.
static BPProcess.VAttr valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BPProcess.VAttr[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface de.mid.innovator.srv2api.icw2elem.K_VATTR
name, toString
 

Enum Constant Detail

BPDia

public static final BPProcess.VAttr BPDia

CallOfCallAble

public static final BPProcess.VAttr CallOfCallAble

Collaboration

public static final BPProcess.VAttr Collaboration

CreateOrientation

public static final BPProcess.VAttr CreateOrientation

DefinitionDiagramProcessViewNode

public static final BPProcess.VAttr DefinitionDiagramProcessViewNode

DiaParticipantNodeVisibleAndSelectAble

public static final BPProcess.VAttr DiaParticipantNodeVisibleAndSelectAble

DiaTaskNodeVisibleAndSelectAble

public static final BPProcess.VAttr DiaTaskNodeVisibleAndSelectAble

EventDefinitionUsed

public static final BPProcess.VAttr EventDefinitionUsed

HasDefinitionDiagram

public static final BPProcess.VAttr HasDefinitionDiagram

HasHiddenViewNodes

public static final BPProcess.VAttr HasHiddenViewNodes

HasNonVirtualSyncViewNodes

public static final BPProcess.VAttr HasNonVirtualSyncViewNodes

IncomingSupport

public static final BPProcess.VAttr IncomingSupport

IsClosed

public static final BPProcess.VAttr IsClosed

ItemAwareElementForDefinition

public static final BPProcess.VAttr ItemAwareElementForDefinition

ItemDefinitionUsed

public static final BPProcess.VAttr ItemDefinitionUsed

MasterProcessViewNode

public static final BPProcess.VAttr MasterProcessViewNode

MessageUsed

public static final BPProcess.VAttr MessageUsed

NonMasterProcessViewNode

public static final BPProcess.VAttr NonMasterProcessViewNode

NonSynchronizedProcessViewNode

public static final BPProcess.VAttr NonSynchronizedProcessViewNode

OutgoingSupport

public static final BPProcess.VAttr OutgoingSupport

OwnedBPDia

public static final BPProcess.VAttr OwnedBPDia

OwnedLaneSet

public static final BPProcess.VAttr OwnedLaneSet

OwnedLinkEventDefinitions

public static final BPProcess.VAttr OwnedLinkEventDefinitions

OwnedResourceAssignment

public static final BPProcess.VAttr OwnedResourceAssignment

OwnedReuseAbleElement

public static final BPProcess.VAttr OwnedReuseAbleElement

Participant

public static final BPProcess.VAttr Participant

ProcessCalled

public static final BPProcess.VAttr ProcessCalled

ProcessCalledTransitive

public static final BPProcess.VAttr ProcessCalledTransitive

ProcessCalling

public static final BPProcess.VAttr ProcessCalling

ProcessCallingTransitive

public static final BPProcess.VAttr ProcessCallingTransitive

ProcessProperty

public static final BPProcess.VAttr ProcessProperty

ProcessType

public static final BPProcess.VAttr ProcessType

ProcessViewCompletelyMaintained

public static final BPProcess.VAttr ProcessViewCompletelyMaintained

ProcessViewIncomplete

public static final BPProcess.VAttr ProcessViewIncomplete

ProcessViewIncorrect

public static final BPProcess.VAttr ProcessViewIncorrect

ResponsibleResource

public static final BPProcess.VAttr ResponsibleResource

ServiceTask

public static final BPProcess.VAttr ServiceTask

SynchronizedProcessViewNode

public static final BPProcess.VAttr SynchronizedProcessViewNode

UseResources

public static final BPProcess.VAttr UseResources
Method Detail

toInt

public int toInt()
Returns a specific integer value for the enumeration constant. This method is needed to serialize enumeration constants.

Specified by:
toInt in interface K_VATTR
Returns:
the specified value of the enumeration constant

valueOf

public static BPProcess.VAttr valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

values

public static BPProcess.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 (BPProcess.VAttr c : BPProcess.VAttr.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared