java.lang.Object
java.lang.Enum<DumperOptions.ScalarStyle>
org.yaml.snakeyaml.DumperOptions.ScalarStyle
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DumperOptions.ScalarStyle>,java.lang.constant.Constable
- Enclosing class:
- DumperOptions
public static enum DumperOptions.ScalarStyle extends java.lang.Enum<DumperOptions.ScalarStyle>
YAML provides a rich set of scalar styles. Block scalar styles include
the literal style and the folded style; flow scalar styles include the
plain style and two quoted styles, the single-quoted style and the
double-quoted style. These styles offer a range of trade-offs between
expressive power and readability.
- See Also:
- Chapter 9. Scalar Styles, 2.3. Scalars
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description DOUBLE_QUOTEDFOLDEDLITERALPLAINSINGLE_QUOTED -
Method Summary
Modifier and Type Method Description static DumperOptions.ScalarStylecreateStyle(java.lang.Character style)java.lang.CharactergetChar()java.lang.StringtoString()static DumperOptions.ScalarStylevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DumperOptions.ScalarStyle[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getChar
public java.lang.Character getChar() -
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Enum<DumperOptions.ScalarStyle>
-
createStyle
-