public enum NonPrintableStyle extends Enum<NonPrintableStyle>
| Enum Constant and Description |
|---|
BINARY
Transform non-printable string to !!binary
|
ESCAPE
Escape non-printable string with \\u or \\x notation
|
| Modifier and Type | Method and Description |
|---|---|
static NonPrintableStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NonPrintableStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NonPrintableStyle BINARY
public static final NonPrintableStyle ESCAPE
public static NonPrintableStyle[] values()
for (NonPrintableStyle c : NonPrintableStyle.values()) System.out.println(c);
public static NonPrintableStyle 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 © 2018–2022. All rights reserved.