org.processmining.converting.wfnet2bpel
Enum Choice

java.lang.Object
  extended by java.lang.Enum<Choice>
      extended by org.processmining.converting.wfnet2bpel.Choice
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Choice>

public enum Choice
extends java.lang.Enum<Choice>

Title:

Description:

Copyright: Copyright (c) 2004

Company:

Version:
1.0
Author:
not attributable

Enum Constant Summary
EXPLICIT
          The choice is an explicit choice.
IMPLICIT
          The choice is an implicit choice.
NOT_CHOICE
          The choice is not a choice.
NOT_DEFINED
          The choice is not defined.
 
Method Summary
static Choice valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Choice[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EXPLICIT

public static final Choice EXPLICIT
The choice is an explicit choice. This means that the incoming transitions intersection with outgoing transitions are empty, and all outgoing transitions are silent.


IMPLICIT

public static final Choice IMPLICIT
The choice is an implicit choice. This means that the incoming transitions intersection with outgoing transitions are empty, and all outgoing transitions are NOT silent.


NOT_DEFINED

public static final Choice NOT_DEFINED
The choice is not defined. This means that the incoming transitions intersection with outgoing transitions are empty, but the outgoing transitions are a mix of silent and non-silent transitions.


NOT_CHOICE

public static final Choice NOT_CHOICE
The choice is not a choice. This means that the incoming transitions intersection with outgoing transitions are NOT empty.

Method Detail

values

public static final Choice[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Choice c : Choice.values())
        System.out.println(c);

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

valueOf

public static Choice 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 name