public enum SecurityStorageMode extends java.lang.Enum<SecurityStorageMode>
| Enum Constant and Description |
|---|
MIXED
Mixed mode, both sources will be used.
|
SOURCE_CODE
Only roles defined in the source code will be used.
|
| Modifier and Type | Method and Description |
|---|---|
static SecurityStorageMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SecurityStorageMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityStorageMode SOURCE_CODE
public static final SecurityStorageMode MIXED
public static SecurityStorageMode[] values()
for (SecurityStorageMode c : SecurityStorageMode.values()) System.out.println(c);
public static SecurityStorageMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null