org.tolven.trim
Enum ActStatus

java.lang.Object
  extended by java.lang.Enum<ActStatus>
      extended by org.tolven.trim.ActStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ActStatus>

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

Java class for ActStatus.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="ActStatus">
   <restriction base="{urn:tolven-org:trim:4.0}cs">
     <enumeration value="nullified"/>
     <enumeration value="obsolete"/>
     <enumeration value="normal"/>
     <enumeration value="aborted"/>
     <enumeration value="active"/>
     <enumeration value="cancelled"/>
     <enumeration value="completed"/>
     <enumeration value="held"/>
     <enumeration value="new"/>
     <enumeration value="suspended"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
ABORTED
           
ACTIVE
           
CANCELLED
           
COMPLETED
           
HELD
           
NEW
           
NORMAL
           
NULLIFIED
           
OBSOLETE
           
SUSPENDED
           
 
Method Summary
static ActStatus fromValue(java.lang.String v)
           
 java.lang.String value()
           
static ActStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ActStatus[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NULLIFIED

public static final ActStatus NULLIFIED

OBSOLETE

public static final ActStatus OBSOLETE

NORMAL

public static final ActStatus NORMAL

ABORTED

public static final ActStatus ABORTED

ACTIVE

public static final ActStatus ACTIVE

CANCELLED

public static final ActStatus CANCELLED

COMPLETED

public static final ActStatus COMPLETED

HELD

public static final ActStatus HELD

NEW

public static final ActStatus NEW

SUSPENDED

public static final ActStatus SUSPENDED
Method Detail

values

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

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

valueOf

public static ActStatus 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
java.lang.NullPointerException - if the argument is null

value

public java.lang.String value()

fromValue

public static ActStatus fromValue(java.lang.String v)