public enum AccountUsageBO extends Enum<AccountUsageBO>
| Modifier and Type | Method and Description |
|---|---|
static Optional<AccountUsageBO> |
getByValue(String value) |
String |
getValue() |
static AccountUsageBO |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountUsageBO[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountUsageBO PRIV
public static final AccountUsageBO ORGA
public static AccountUsageBO[] values()
for (AccountUsageBO c : AccountUsageBO.values()) System.out.println(c);
public static AccountUsageBO 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 nullpublic String getValue()
public static Optional<AccountUsageBO> getByValue(String value)
Copyright © 2020. All rights reserved.