public static enum DocumentMetadataHandle.Capability extends Enum<DocumentMetadataHandle.Capability>
Enum Constant and Description |
---|
EXECUTE
Permission to execute the document.
|
INSERT
Permission to create but not modify the document.
|
READ
Permission to read the document.
|
UPDATE
Permission to create or modify the document.
|
Modifier and Type | Method and Description |
---|---|
static DocumentMetadataHandle.Capability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentMetadataHandle.Capability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentMetadataHandle.Capability EXECUTE
public static final DocumentMetadataHandle.Capability INSERT
public static final DocumentMetadataHandle.Capability READ
public static final DocumentMetadataHandle.Capability UPDATE
public static DocumentMetadataHandle.Capability[] values()
for (DocumentMetadataHandle.Capability c : DocumentMetadataHandle.Capability.values()) System.out.println(c);
public static DocumentMetadataHandle.Capability 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.