public enum UserAccountFeeStatus extends java.lang.Enum<UserAccountFeeStatus>
| Enum Constant and Description |
|---|
CHARGED
The account was successfully charged
|
FAILED
The account couldn't be charged.
|
PENDING
The account hasn't been charged yet
|
SKIPPED
The account wasn't charged, for example, because of the freebase
|
| Modifier and Type | Method and Description |
|---|---|
static UserAccountFeeStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserAccountFeeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserAccountFeeStatus PENDING
public static final UserAccountFeeStatus FAILED
public static final UserAccountFeeStatus SKIPPED
public static final UserAccountFeeStatus CHARGED
public static UserAccountFeeStatus[] values()
for (UserAccountFeeStatus c : UserAccountFeeStatus.values()) System.out.println(c);
public static UserAccountFeeStatus 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