public enum ExternalCallStateEnum extends Enum<ExternalCallStateEnum>
ExternalCall.| Enum Constant and Description |
|---|
FAILED
External call failed, try it next time.
|
FAILED_END
All confirmation tries failed, no further processing.
|
OK
External call is successfully done.
|
PROCESSING
External call is just processing.
|
| Modifier and Type | Method and Description |
|---|---|
static ExternalCallStateEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExternalCallStateEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExternalCallStateEnum PROCESSING
public static final ExternalCallStateEnum OK
public static final ExternalCallStateEnum FAILED
public static final ExternalCallStateEnum FAILED_END
public static ExternalCallStateEnum[] values()
for (ExternalCallStateEnum c : ExternalCallStateEnum.values()) System.out.println(c);
public static ExternalCallStateEnum valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.