public static enum DumperOptions.FlowStyle extends java.lang.Enum<DumperOptions.FlowStyle>
Modifier and Type | Field and Description |
---|---|
private java.lang.Boolean |
styleBoolean |
Modifier and Type | Method and Description |
---|---|
static DumperOptions.FlowStyle |
fromBoolean(java.lang.Boolean flowStyle)
Deprecated.
|
java.lang.Boolean |
getStyleBoolean() |
java.lang.String |
toString() |
static DumperOptions.FlowStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DumperOptions.FlowStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DumperOptions.FlowStyle FLOW
public static final DumperOptions.FlowStyle BLOCK
public static final DumperOptions.FlowStyle AUTO
public static DumperOptions.FlowStyle[] values()
for (DumperOptions.FlowStyle c : DumperOptions.FlowStyle.values()) System.out.println(c);
public static DumperOptions.FlowStyle 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@Deprecated public static DumperOptions.FlowStyle fromBoolean(java.lang.Boolean flowStyle)
public java.lang.Boolean getStyleBoolean()
public java.lang.String toString()
toString
in class java.lang.Enum<DumperOptions.FlowStyle>