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