Package com.saperion.ngc.iform
Enum IndexMaskDocument.AclWriteMode
- java.lang.Object
-
- java.lang.Enum<IndexMaskDocument.AclWriteMode>
-
- com.saperion.ngc.iform.IndexMaskDocument.AclWriteMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IndexMaskDocument.AclWriteMode>
- Enclosing class:
- IndexMaskDocument
public static enum IndexMaskDocument.AclWriteMode extends java.lang.Enum<IndexMaskDocument.AclWriteMode>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IndexMaskDocument.AclWriteMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IndexMaskDocument.AclWriteMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPEND
public static final IndexMaskDocument.AclWriteMode APPEND
Appends all ACLs to the existing ones on the document (default).
-
OVERWRITE
public static final IndexMaskDocument.AclWriteMode OVERWRITE
Removes existing ACLs and adds the new ACLs.
-
CLEAR
public static final IndexMaskDocument.AclWriteMode CLEAR
Clears all ACLs on the document and does not add new ACLs.
-
-
Method Detail
-
values
public static IndexMaskDocument.AclWriteMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IndexMaskDocument.AclWriteMode c : IndexMaskDocument.AclWriteMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IndexMaskDocument.AclWriteMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-