Enum DumperOptions.ScalarStyle

java.lang.Object
java.lang.Enum<DumperOptions.ScalarStyle>
org.yaml.snakeyaml.DumperOptions.ScalarStyle
All Implemented Interfaces:
Serializable, Comparable<DumperOptions.ScalarStyle>, java.lang.constant.Constable
Enclosing class:
DumperOptions

public static enum DumperOptions.ScalarStyle extends 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:
  • Enum Constant Details

  • Method Details

    • values

      public static DumperOptions.ScalarStyle[] 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

      public static DumperOptions.ScalarStyle valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getChar

      public Character getChar()
      getter
      Returns:
      the char behind the style
    • toString

      public String toString()
      getter
      Overrides:
      toString in class Enum<DumperOptions.ScalarStyle>
      Returns:
      for humans
    • createStyle

      public static DumperOptions.ScalarStyle createStyle(Character style)
      Create
      Parameters:
      style - - source char
      Returns:
      parsed style