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