public enum RedactionMode extends Enum<RedactionMode>
Enum Constant and Description |
---|
NONE
Annotations will be ignored.
|
RENDERED
Annotations, will be rendered into the file (if possible).
|
SEPARATE
Annotations will be written to an external file.
|
Modifier and Type | Method and Description |
---|---|
static RedactionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedactionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedactionMode NONE
public static final RedactionMode SEPARATE
public static final RedactionMode RENDERED
public static RedactionMode[] values()
for (RedactionMode c : RedactionMode.values()) System.out.println(c);
public static RedactionMode 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 © 2016 SAPERION AG. All rights reserved.