net.sourceforge.fixagora.basis.shared.model.communication
Enum PersistResponse.PersistStatus

java.lang.Object
  extended by java.lang.Enum<PersistResponse.PersistStatus>
      extended by net.sourceforge.fixagora.basis.shared.model.communication.PersistResponse.PersistStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PersistResponse.PersistStatus>
Enclosing class:
PersistResponse

public static enum PersistResponse.PersistStatus
extends java.lang.Enum<PersistResponse.PersistStatus>

The Enum PersistStatus.


Enum Constant Summary
FAILED
          The failed.
SUCCESS
          The success.
 
Method Summary
static PersistResponse.PersistStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PersistResponse.PersistStatus[] 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

SUCCESS

public static final PersistResponse.PersistStatus SUCCESS
The success.


FAILED

public static final PersistResponse.PersistStatus FAILED
The failed.

Method Detail

values

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

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

valueOf

public static PersistResponse.PersistStatus 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