Package org.yaml.snakeyaml
Enum DumperOptions.FlowStyle
- java.lang.Object
-
- java.lang.Enum<DumperOptions.FlowStyle>
-
- org.yaml.snakeyaml.DumperOptions.FlowStyle
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DumperOptions.FlowStyle>
- Enclosing class:
- DumperOptions
public static enum DumperOptions.FlowStyle extends java.lang.Enum<DumperOptions.FlowStyle>
Block styles use indentation to denote nesting and scope within the document. In contrast, flow styles rely on explicit indicators to denote nesting and scope.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Boolean
styleBoolean
-
Constructor Summary
Constructors Modifier Constructor Description private
FlowStyle(java.lang.Boolean flowStyle)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static DumperOptions.FlowStyle
fromBoolean(java.lang.Boolean flowStyle)
Deprecated.Since restored in v1.22.java.lang.Boolean
getStyleBoolean()
Deprecated.use enum insteadjava.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.
-
-
-
Enum Constant Detail
-
FLOW
public static final DumperOptions.FlowStyle FLOW
Flow style
-
BLOCK
public static final DumperOptions.FlowStyle BLOCK
Block style
-
AUTO
public static final DumperOptions.FlowStyle AUTO
Auto (first block, than flow)
-
-
Method Detail
-
values
public static DumperOptions.FlowStyle[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DumperOptions.FlowStyle c : DumperOptions.FlowStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DumperOptions.FlowStyle valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
fromBoolean
@Deprecated public static DumperOptions.FlowStyle fromBoolean(java.lang.Boolean flowStyle)
Deprecated.Since restored in v1.22. Use theDumperOptions.FlowStyle
constants in your code instead.Convenience for legacy constructors that tookBoolean
arguments since replaced byDumperOptions.FlowStyle
. Introduced in v1.22 but only to support that for backwards compatibility.
-
getStyleBoolean
@Deprecated public java.lang.Boolean getStyleBoolean()
Deprecated.use enum insteadgetter- Returns:
- bbolean value
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<DumperOptions.FlowStyle>
-
-