net.sourceforge.fixagora.sap.shared.communication
Enum SAPTradeCaptureActionResponse.ActionResponse

java.lang.Object
  extended by java.lang.Enum<SAPTradeCaptureActionResponse.ActionResponse>
      extended by net.sourceforge.fixagora.sap.shared.communication.SAPTradeCaptureActionResponse.ActionResponse
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SAPTradeCaptureActionResponse.ActionResponse>
Enclosing class:
SAPTradeCaptureActionResponse

public static enum SAPTradeCaptureActionResponse.ActionResponse
extends java.lang.Enum<SAPTradeCaptureActionResponse.ActionResponse>

The Enum ActionResponse.


Enum Constant Summary
FAILED
          The failed.
STARTED
          The started.
STOPPED
          The stopped.
 
Method Summary
static SAPTradeCaptureActionResponse.ActionResponse valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SAPTradeCaptureActionResponse.ActionResponse[] 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

STARTED

public static final SAPTradeCaptureActionResponse.ActionResponse STARTED
The started.


STOPPED

public static final SAPTradeCaptureActionResponse.ActionResponse STOPPED
The stopped.


FAILED

public static final SAPTradeCaptureActionResponse.ActionResponse FAILED
The failed.

Method Detail

values

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

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

valueOf

public static SAPTradeCaptureActionResponse.ActionResponse 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