public enum OName extends Enum<OName>
| Enum Constant and Description |
|---|
APP_PRIVATE_KEY |
APP_PUBLIC_KEY |
APP_UUID |
CONTAINER_UUID |
EMAIL |
PASSWORD_HASH |
PASSWORD_SALT |
PRIVATE_KEY |
PUBLIC_KEY |
USER_UUID |
| Modifier and Type | Method and Description |
|---|---|
static OName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OName USER_UUID
public static final OName CONTAINER_UUID
public static final OName EMAIL
public static final OName PASSWORD_HASH
public static final OName PASSWORD_SALT
public static final OName PRIVATE_KEY
public static final OName PUBLIC_KEY
public static final OName APP_UUID
public static final OName APP_PRIVATE_KEY
public static final OName APP_PUBLIC_KEY
public static OName[] values()
for (OName c : OName.values()) System.out.println(c);
public static OName 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 © 2018. All rights reserved.