Package org.docx4j.wml
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_HORZBanded Row Conditional FormattingBAND_1_VERTBanded Column Conditional FormattingBAND_2_HORZEven Row Stripe Conditional FormattingBAND_2_VERTEven Column Stripe Conditional FormattingFIRST_COLFirst Column Conditional FormattingFIRST_ROWFirst Row Conditional FormattingLAST_COLLast table column formattingLAST_ROWLast table row formattingNE_CELLTop right table cell formattingNW_CELLTop left table cell formattingSE_CELLBottom right table cell formattingSW_CELLBottom left table cell formattingWHOLE_TABLEWhole table formatting -
Method Summary
Modifier and Type Method Description static STTblStyleOverrideTypefromValue(java.lang.String v)java.lang.Stringvalue()static STTblStyleOverrideTypevalueOf(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, valueOfMethods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-
Enum Constant Details
-
WHOLE_TABLE
Whole table formatting -
FIRST_ROW
First Row Conditional Formatting -
LAST_ROW
Last table row formatting -
FIRST_COL
First Column Conditional Formatting -
LAST_COL
Last table column formatting -
BAND_1_VERT
Banded Column Conditional Formatting -
BAND_2_VERT
Even Column Stripe Conditional Formatting -
BAND_1_HORZ
Banded Row Conditional Formatting -
BAND_2_HORZ
Even Row Stripe Conditional 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
-
-
Method Details
-
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
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 namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value() -
fromValue
-