org.drools.guvnor.client.rulefloweditor
Enum TransferNode.Type

java.lang.Object
  extended by java.lang.Enum<TransferNode.Type>
      extended by org.drools.guvnor.client.rulefloweditor.TransferNode.Type
All Implemented Interfaces:
com.google.gwt.user.client.rpc.IsSerializable, Serializable, Comparable<TransferNode.Type>
Enclosing class:
TransferNode

public static enum TransferNode.Type
extends Enum<TransferNode.Type>
implements com.google.gwt.user.client.rpc.IsSerializable


Enum Constant Summary
ACTION_NODE
           
COMPOSITE
           
END
           
EVENT
           
FAULT
           
FOR_EACH
           
HUMANTASK
           
JOIN
           
MILESTONE
           
RULESET
           
SPLIT
           
START
           
SUB_PROCESS
           
TIMER
           
WORK_ITEM
           
 
Method Summary
static TransferNode.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TransferNode.Type[] 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
 

Enum Constant Detail

START

public static final TransferNode.Type START

HUMANTASK

public static final TransferNode.Type HUMANTASK

JOIN

public static final TransferNode.Type JOIN

SUB_PROCESS

public static final TransferNode.Type SUB_PROCESS

MILESTONE

public static final TransferNode.Type MILESTONE

TIMER

public static final TransferNode.Type TIMER

ACTION_NODE

public static final TransferNode.Type ACTION_NODE

RULESET

public static final TransferNode.Type RULESET

SPLIT

public static final TransferNode.Type SPLIT

END

public static final TransferNode.Type END

FOR_EACH

public static final TransferNode.Type FOR_EACH

COMPOSITE

public static final TransferNode.Type COMPOSITE

EVENT

public static final TransferNode.Type EVENT

WORK_ITEM

public static final TransferNode.Type WORK_ITEM

FAULT

public static final TransferNode.Type FAULT
Method Detail

values

public static TransferNode.Type[] 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 (TransferNode.Type c : TransferNode.Type.values())
    System.out.println(c);

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

valueOf

public static TransferNode.Type 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


Copyright © 2001-2011 JBoss Inc.. All Rights Reserved.