public enum STView extends Enum<STView>
Java class for ST_View.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_View">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="none"/>
<enumeration value="print"/>
<enumeration value="outline"/>
<enumeration value="masterPages"/>
<enumeration value="normal"/>
<enumeration value="web"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
MASTER_PAGES
Master Document View
|
NONE
Default View
|
NORMAL
Draft View
|
OUTLINE
Outline View
|
PRINT
Print Layout View
|
WEB
Web Page View
|
| Modifier and Type | Method and Description |
|---|---|
static STView |
fromValue(String v) |
String |
value() |
static STView |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STView[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STView NONE
public static final STView PRINT
public static final STView OUTLINE
public static final STView MASTER_PAGES
public static final STView NORMAL
public static final STView WEB
public static STView[] values()
for (STView c : STView.values()) System.out.println(c);
public static STView valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
Copyright © 2007-2020. All Rights Reserved.