public enum LookupSetting extends Enum<LookupSetting>
Contexts.| Enum Constant and Description |
|---|
APPLY_PARENTS_SET_WITHOUT_SERVER
If global or non-server-specific group memberships should be applied
|
APPLY_PARENTS_SET_WITHOUT_WORLD
If global or non-world-specific group memberships should be applied
|
INCLUDE_NODES_SET_WITHOUT_SERVER
If global or non-server-specific nodes should be applied
|
INCLUDE_NODES_SET_WITHOUT_WORLD
If global or non-world-specific nodes should be applied
|
IS_OP
If the target subject is OP
|
RESOLVE_INHERITANCE
If parent groups should be resolved
|
| Modifier and Type | Method and Description |
|---|---|
static LookupSetting |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LookupSetting[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LookupSetting IS_OP
public static final LookupSetting INCLUDE_NODES_SET_WITHOUT_SERVER
public static final LookupSetting INCLUDE_NODES_SET_WITHOUT_WORLD
public static final LookupSetting RESOLVE_INHERITANCE
public static final LookupSetting APPLY_PARENTS_SET_WITHOUT_SERVER
public static final LookupSetting APPLY_PARENTS_SET_WITHOUT_WORLD
public static LookupSetting[] values()
for (LookupSetting c : LookupSetting.values()) System.out.println(c);
public static LookupSetting 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 null