Enum STTblStyleOverrideType

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

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

Java class for ST_TblStyleOverrideType.

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

 <simpleType name="ST_TblStyleOverrideType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="wholeTable"/>
     <enumeration value="firstRow"/>
     <enumeration value="lastRow"/>
     <enumeration value="firstCol"/>
     <enumeration value="lastCol"/>
     <enumeration value="band1Vert"/>
     <enumeration value="band2Vert"/>
     <enumeration value="band1Horz"/>
     <enumeration value="band2Horz"/>
     <enumeration value="neCell"/>
     <enumeration value="nwCell"/>
     <enumeration value="seCell"/>
     <enumeration value="swCell"/>
   </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
    BAND_1_HORZ
    Banded Row Conditional Formatting
    BAND_1_VERT
    Banded Column Conditional Formatting
    BAND_2_HORZ
    Even Row Stripe Conditional Formatting
    BAND_2_VERT
    Even Column Stripe Conditional Formatting
    FIRST_COL
    First Column Conditional Formatting
    FIRST_ROW
    First Row Conditional Formatting
    LAST_COL
    Last table column formatting
    LAST_ROW
    Last table row formatting
    NE_CELL
    Top right table cell formatting
    NW_CELL
    Top left table cell formatting
    SE_CELL
    Bottom right table cell formatting
    SW_CELL
    Bottom left table cell formatting
    WHOLE_TABLE
    Whole table formatting
  • Method Summary

    Modifier and Type Method Description
    static STTblStyleOverrideType fromValue​(java.lang.String v)  
    java.lang.String value()  
    static STTblStyleOverrideType valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static STTblStyleOverrideType[] 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

  • Method Details

    • values

      public static STTblStyleOverrideType[] 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 STTblStyleOverrideType 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 STTblStyleOverrideType fromValue​(java.lang.String v)