public static enum QueryScope.AuditMode extends java.lang.Enum<QueryScope.AuditMode>
Enum Constant and Description |
---|
AUDIT_DISTRIBUTION
Validate that the node list is valid and that distribution
is active.
|
AUDIT_NODE_LIST
Default audit mode, distributed audits are disable.
|
AUDIT_NODES_ACTIVE
Validate that the node list is valid, distribution is active,
and that all nodes are active.
|
Modifier and Type | Method and Description |
---|---|
static QueryScope.AuditMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueryScope.AuditMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryScope.AuditMode AUDIT_NODE_LIST
public static final QueryScope.AuditMode AUDIT_DISTRIBUTION
public static final QueryScope.AuditMode AUDIT_NODES_ACTIVE
public static QueryScope.AuditMode[] values()
for (QueryScope.AuditMode c : QueryScope.AuditMode.values()) System.out.println(c);
public static QueryScope.AuditMode 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