public enum Flag extends Enum<Flag>
By default (in places like new instances of QueryOptions.Builder and
QueryOptions.defaultContextualOptions()), all Flags are set to true.
| Enum Constant and Description |
|---|
APPLY_INHERITANCE_NODES_WITHOUT_SERVER_CONTEXT
If global or non-server-specific group memberships should be applied
|
APPLY_INHERITANCE_NODES_WITHOUT_WORLD_CONTEXT
If global or non-world-specific group memberships should be applied
|
INCLUDE_NODES_WITHOUT_SERVER_CONTEXT
If global or non-server-specific nodes should be applied
|
INCLUDE_NODES_WITHOUT_WORLD_CONTEXT
If global or non-world-specific nodes should be applied
|
RESOLVE_INHERITANCE
If parent groups should be resolved
|
| Modifier and Type | Method and Description |
|---|---|
static Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Flag RESOLVE_INHERITANCE
public static final Flag INCLUDE_NODES_WITHOUT_SERVER_CONTEXT
public static final Flag INCLUDE_NODES_WITHOUT_WORLD_CONTEXT
public static final Flag APPLY_INHERITANCE_NODES_WITHOUT_SERVER_CONTEXT
public static final Flag APPLY_INHERITANCE_NODES_WITHOUT_WORLD_CONTEXT
public static Flag[] values()
for (Flag c : Flag.values()) System.out.println(c);
public static Flag 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