Enum STTextUnderlineType

java.lang.Object
java.lang.Enum<STTextUnderlineType>
org.docx4j.dml.STTextUnderlineType
All Implemented Interfaces:
Serializable, Comparable<STTextUnderlineType>, java.lang.constant.Constable

public enum STTextUnderlineType extends Enum<STTextUnderlineType>

Java class for ST_TextUnderlineType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="ST_TextUnderlineType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="none"/>
     <enumeration value="words"/>
     <enumeration value="sng"/>
     <enumeration value="dbl"/>
     <enumeration value="heavy"/>
     <enumeration value="dotted"/>
     <enumeration value="dottedHeavy"/>
     <enumeration value="dash"/>
     <enumeration value="dashHeavy"/>
     <enumeration value="dashLong"/>
     <enumeration value="dashLongHeavy"/>
     <enumeration value="dotDash"/>
     <enumeration value="dotDashHeavy"/>
     <enumeration value="dotDotDash"/>
     <enumeration value="dotDotDashHeavy"/>
     <enumeration value="wavy"/>
     <enumeration value="wavyHeavy"/>
     <enumeration value="wavyDbl"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • NONE

      public static final STTextUnderlineType NONE
      Text Underline Enum ( None )
    • WORDS

      public static final STTextUnderlineType WORDS
      Text Underline Enum ( Words )
    • SNG

      public static final STTextUnderlineType SNG
      Text Underline Enum ( Single )
    • DBL

      public static final STTextUnderlineType DBL
      Text Underline Enum ( Double )
    • HEAVY

      public static final STTextUnderlineType HEAVY
      Text Underline Enum ( Heavy )
    • DOTTED

      public static final STTextUnderlineType DOTTED
      Text Underline Enum ( Dotted )
    • DOTTED_HEAVY

      public static final STTextUnderlineType DOTTED_HEAVY
      Text Underline Enum ( Heavy Dotted )
    • DASH

      public static final STTextUnderlineType DASH
      Text Underline Enum ( Dashed )
    • DASH_HEAVY

      public static final STTextUnderlineType DASH_HEAVY
      Text Underline Enum ( Heavy Dashed )
    • DASH_LONG

      public static final STTextUnderlineType DASH_LONG
      Text Underline Enum ( Long Dashed )
    • DASH_LONG_HEAVY

      public static final STTextUnderlineType DASH_LONG_HEAVY
      Text Underline Enum ( Heavy Long Dashed )
    • DOT_DASH

      public static final STTextUnderlineType DOT_DASH
      Text Underline Enum ( Dot Dash )
    • DOT_DASH_HEAVY

      public static final STTextUnderlineType DOT_DASH_HEAVY
      Text Underline Enum ( Heavy Dot Dash )
    • DOT_DOT_DASH

      public static final STTextUnderlineType DOT_DOT_DASH
      Text Underline Enum ( Dot Dot Dash )
    • DOT_DOT_DASH_HEAVY

      public static final STTextUnderlineType DOT_DOT_DASH_HEAVY
      Text Underline Enum ( Heavy Dot Dot Dash )
    • WAVY

      public static final STTextUnderlineType WAVY
      Text Underline Enum ( Wavy )
    • WAVY_HEAVY

      public static final STTextUnderlineType WAVY_HEAVY
      Text Underline Enum ( Heavy Wavy )
    • WAVY_DBL

      public static final STTextUnderlineType WAVY_DBL
      Text Underline Enum ( Double Wavy )
  • Method Details

    • values

      public static STTextUnderlineType[] 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 STTextUnderlineType 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
    • value

      public String value()
    • fromValue

      public static STTextUnderlineType fromValue(String v)