public enum RedactionActionType extends Enum<RedactionActionType>
Represents actions that can be taken to perform redaction.
Enum Constant and Description |
---|
Cleanup
Data were removed, but an empty object remains in the document.
|
Deletion
Data and related structures were removed from the document.
|
Replacement
Redacted text was replaced with another or covered with a block.
|
Modifier and Type | Method and Description |
---|---|
static RedactionActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedactionActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedactionActionType Replacement
Redacted text was replaced with another or covered with a block.
public static final RedactionActionType Cleanup
Data were removed, but an empty object remains in the document.
public static final RedactionActionType Deletion
Data and related structures were removed from the document.
public static RedactionActionType[] values()
for (RedactionActionType c : RedactionActionType.values()) System.out.println(c);
public static RedactionActionType 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 null