public static enum UpdateResponse.ReasonCode extends java.lang.Enum<UpdateResponse.ReasonCode>
Enum Constant and Description |
---|
AMM_FLUSH_CHECK_FAILURE
status indicating that the flush check failed
|
DUPLICATE_REQUEST
status indicating that the request is a duplicate
|
RERATE_CUSTOMER_CONCURRENT_RATED_EVENTS_EXIST
status indicating that the customer to be rerated has existing concurrent rated events
|
RERATE_CUSTOMER_FLUSH_CHECK_FAILURE
status indicating that the flush check failed
|
RERATE_CUSTOMER_IN_RERATING_FOR_ANOTHER_JOB
status indicating that the customer is already in rerating for another job
|
RERATE_CUSTOMER_LOCK_FAILURE
status indicating that the customer rerate processing state could not be changed
|
SYSTEM_ERR
Status indicating an undefined system error
|
Modifier and Type | Method and Description |
---|---|
static UpdateResponse.ReasonCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UpdateResponse.ReasonCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateResponse.ReasonCode SYSTEM_ERR
public static final UpdateResponse.ReasonCode RERATE_CUSTOMER_IN_RERATING_FOR_ANOTHER_JOB
public static final UpdateResponse.ReasonCode RERATE_CUSTOMER_CONCURRENT_RATED_EVENTS_EXIST
public static final UpdateResponse.ReasonCode RERATE_CUSTOMER_LOCK_FAILURE
public static final UpdateResponse.ReasonCode RERATE_CUSTOMER_FLUSH_CHECK_FAILURE
public static final UpdateResponse.ReasonCode DUPLICATE_REQUEST
public static final UpdateResponse.ReasonCode AMM_FLUSH_CHECK_FAILURE
public static UpdateResponse.ReasonCode[] values()
for (UpdateResponse.ReasonCode c : UpdateResponse.ReasonCode.values()) System.out.println(c);
public static UpdateResponse.ReasonCode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null