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