Enum Class ValueStyle

java.lang.Object
java.lang.Enum<ValueStyle>
net.orbyfied.aspen.raw.ValueStyle
All Implemented Interfaces:
Serializable, Comparable<ValueStyle>, Constable

public enum ValueStyle extends Enum<ValueStyle>
  • Enum Constant Details

    • PLAIN

      public static final ValueStyle PLAIN
    • SINGLE_QUOTED

      public static final ValueStyle SINGLE_QUOTED
    • DOUBLE_QUOTED

      public static final ValueStyle DOUBLE_QUOTED
  • Method Details

    • values

      public static ValueStyle[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ValueStyle valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null