public enum AccountFeeLogStatus extends java.lang.Enum<AccountFeeLogStatus>
| Enum Constant and Description |
|---|
FINISHED
The execution has finished
|
NEVER_RAN
The execution has never ran
|
RECHARGING_FAILED
The execution is currently running for recharging failed users
|
RUNNING
The execution is currently running
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isExecuting()
Returns whether this status means that the log is being executed (either
RUNNING or RECHARGING_FAILED) |
static AccountFeeLogStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccountFeeLogStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountFeeLogStatus NEVER_RAN
public static final AccountFeeLogStatus FINISHED
public static final AccountFeeLogStatus RUNNING
public static final AccountFeeLogStatus RECHARGING_FAILED
public static AccountFeeLogStatus[] values()
for (AccountFeeLogStatus c : AccountFeeLogStatus.values()) System.out.println(c);
public static AccountFeeLogStatus 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 nullpublic boolean isExecuting()
RUNNING or RECHARGING_FAILED)