public static enum DumperOptions.NonPrintableStyle extends java.lang.Enum<DumperOptions.NonPrintableStyle>
Enum Constant and Description |
---|
BINARY
Transform String to binary if it contains non-printable characters
|
ESCAPE
Escape non-printable characters
|
Modifier and Type | Method and Description |
---|---|
static DumperOptions.NonPrintableStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DumperOptions.NonPrintableStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DumperOptions.NonPrintableStyle BINARY
public static final DumperOptions.NonPrintableStyle ESCAPE
public static DumperOptions.NonPrintableStyle[] values()
for (DumperOptions.NonPrintableStyle c : DumperOptions.NonPrintableStyle.values()) System.out.println(c);
public static DumperOptions.NonPrintableStyle valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null