public enum STFtnPos extends java.lang.Enum<STFtnPos>
Java class for ST_FtnPos.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_FtnPos">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="pageBottom"/>
<enumeration value="beneathText"/>
<enumeration value="sectEnd"/>
<enumeration value="docEnd"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BENEATH_TEXT
Footnotes Positioned Beneath
Text
|
DOC_END
Footnotes Positioned At End of
Document
|
PAGE_BOTTOM
Footnotes Positioned at Page
Bottom
|
SECT_END
Footnotes Positioned At End of
Section
|
| Modifier and Type | Method and Description |
|---|---|
static STFtnPos |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static STFtnPos |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static STFtnPos[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STFtnPos PAGE_BOTTOM
public static final STFtnPos BENEATH_TEXT
public static final STFtnPos SECT_END
public static final STFtnPos DOC_END
public static STFtnPos[] values()
for (STFtnPos c : STFtnPos.values()) System.out.println(c);
public static STFtnPos valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String value()
public static STFtnPos fromValue(java.lang.String v)
Copyright © 2007–2025. All rights reserved.