Enum DumperOptions.ScalarStyle

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<DumperOptions.ScalarStyle>
    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
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.Character styleChar  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private ScalarStyle​(java.lang.Character style)  
    • Field Detail

      • styleChar

        private final java.lang.Character styleChar
    • Constructor Detail

      • ScalarStyle

        private ScalarStyle​(java.lang.Character style)
    • Method Detail

      • values

        public static DumperOptions.ScalarStyle[] 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.ScalarStyle c : DumperOptions.ScalarStyle.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.ScalarStyle 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 name
        java.lang.NullPointerException - if the argument is null
      • getChar

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

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

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