public static enum DumperOptions.NonPrintableStyle extends Enum<DumperOptions.NonPrintableStyle>
| Enum Constant and Description | 
|---|
| BINARYTransform String to binary if it contains non-printable characters | 
| ESCAPEEscape non-printable characters | 
| Modifier and Type | Method and Description | 
|---|---|
| static DumperOptions.NonPrintableStyle | valueOf(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(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 © 2008–2021. All rights reserved.