public enum RedactionStatus extends Enum<RedactionStatus>
Represents a redaction completion status.
Enum Constant and Description |
---|
Applied
Redaction was fully and successfully applied.
|
Failed
Redaction failed with exception.
|
PartiallyApplied
Redaction was aplied only to a part of its matches.
|
Skipped
Redaction was skipped (not applied).
|
Modifier and Type | Method and Description |
---|---|
static RedactionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedactionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedactionStatus Applied
Redaction was fully and successfully applied.
public static final RedactionStatus PartiallyApplied
Redaction was aplied only to a part of its matches.
public static final RedactionStatus Skipped
Redaction was skipped (not applied).
public static final RedactionStatus Failed
Redaction failed with exception.
public static RedactionStatus[] values()
for (RedactionStatus c : RedactionStatus.values()) System.out.println(c);
public static RedactionStatus 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