public enum ProvisionStatus extends Enum<ProvisionStatus>
| Modifier and Type | Method and Description |
|---|---|
static ProvisionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProvisionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProvisionStatus SUCCESS
public static final ProvisionStatus FAIL
public static ProvisionStatus[] values()
for (ProvisionStatus c : ProvisionStatus.values()) System.out.println(c);
public static ProvisionStatus 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 © 2019–2020 mogo. All rights reserved.