public static enum ServerConfigurationManager.Policy extends Enum<ServerConfigurationManager.Policy>
| Enum Constant and Description |
|---|
NONE
Specifies that the capability may not be used.
|
OPTIONAL
Specifies that the capability may be used.
|
REQUIRED
Specifies that the capability must be used.
|
| Modifier and Type | Method and Description |
|---|---|
static ServerConfigurationManager.Policy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServerConfigurationManager.Policy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServerConfigurationManager.Policy REQUIRED
public static final ServerConfigurationManager.Policy OPTIONAL
public static final ServerConfigurationManager.Policy NONE
public static ServerConfigurationManager.Policy[] values()
for (ServerConfigurationManager.Policy c : ServerConfigurationManager.Policy.values()) System.out.println(c);
public static ServerConfigurationManager.Policy 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 © 2013-2015 MarkLogic Corporation.