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