Enum STCompoundLine

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

public enum STCompoundLine
extends java.lang.Enum<STCompoundLine>

Java class for ST_CompoundLine.

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

 <simpleType name="ST_CompoundLine">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="sng"/>
     <enumeration value="dbl"/>
     <enumeration value="thickThin"/>
     <enumeration value="thinThick"/>
     <enumeration value="tri"/>
   </restriction>
 </simpleType>
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant Description
    DBL
    Double Lines
    SNG
    Single Line
    THICK_THIN
    Thick Thin Double Lines
    THIN_THICK
    Thin Thick Double Lines
    TRI
    Thin Thick Thin Triple Lines
  • Method Summary

    Modifier and Type Method Description
    static STCompoundLine fromValue​(java.lang.String v)  
    java.lang.String value()  
    static STCompoundLine valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static STCompoundLine[] values()
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • SNG

      public static final STCompoundLine SNG
      Single Line
    • DBL

      public static final STCompoundLine DBL
      Double Lines
    • THICK_THIN

      public static final STCompoundLine THICK_THIN
      Thick Thin Double Lines
    • THIN_THICK

      public static final STCompoundLine THIN_THICK
      Thin Thick Double Lines
    • TRI

      public static final STCompoundLine TRI
      Thin Thick Thin Triple Lines
  • Method Details

    • values

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

      public java.lang.String value()
    • fromValue

      public static STCompoundLine fromValue​(java.lang.String v)