com.meiglobal.ebds.api.pub
Enum PupExt

java.lang.Object
  extended by java.lang.Enum<PupExt>
      extended by com.meiglobal.ebds.api.pub.PupExt
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PupExt>

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

PupExt. This is no longer used since the functionality has been deprecated.


Enum Constant Summary
OutOfService
           
Return
           
Stack
           
StackNoCredit
           
Wait
           
WaitNoCredit
           
 
Method Summary
static PupExt valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PupExt[] 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

Return

public static final PupExt Return

OutOfService

public static final PupExt OutOfService

StackNoCredit

public static final PupExt StackNoCredit

Stack

public static final PupExt Stack

WaitNoCredit

public static final PupExt WaitNoCredit

Wait

public static final PupExt Wait
Method Detail

values

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

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

valueOf

public static PupExt 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