public static enum ServerConfigurationManager.Policy extends java.lang.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(java.lang.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(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 nullCopyright © 2024 MarkLogic Corporation. All Rights Reserved.