Enum Class UnderlineType

java.lang.Object
java.lang.Enum<UnderlineType>
com.independentsoft.office.odf.styles.UnderlineType
All Implemented Interfaces:
Serializable, Comparable<UnderlineType>, Constable

public enum UnderlineType extends Enum<UnderlineType>
Represents the type of underlining applied to a text.
  • Enum Constant Details

    • SINGLE

      public static final UnderlineType SINGLE
      A single line should be used for underlining applied to a text.
    • DOUBLE

      public static final UnderlineType DOUBLE
      A double line should be used for underlining applied to a text.
    • NONE

      public static final UnderlineType NONE
      Deprecated.
  • Method Details

    • values

      public static UnderlineType[] 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 UnderlineType 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