org.yestech.rpx.objectmodel
Enum RPXStat

java.lang.Object
  extended by java.lang.Enum<RPXStat>
      extended by org.yestech.rpx.objectmodel.RPXStat
All Implemented Interfaces:
Serializable, Comparable<RPXStat>

public enum RPXStat
extends Enum<RPXStat>

Author:
A.J. Wright

Enum Constant Summary
FAIL
           
OK
           
 
Method Summary
static RPXStat fromString(String s)
           
static RPXStat valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RPXStat[] 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

OK

public static final RPXStat OK

FAIL

public static final RPXStat FAIL
Method Detail

values

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

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

valueOf

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

fromString

public static RPXStat fromString(String s)


Copyright © 2010 YES Technology Association. All Rights Reserved.