Package org.pptx4j.pml
Enum STViewType
java.lang.Object
java.lang.Enum<STViewType>
org.pptx4j.pml.STViewType
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<STViewType>,java.lang.constant.Constable
public enum STViewType extends java.lang.Enum<STViewType>
Java class for ST_ViewType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_ViewType">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="sldView"/>
<enumeration value="sldMasterView"/>
<enumeration value="notesView"/>
<enumeration value="handoutView"/>
<enumeration value="notesMasterView"/>
<enumeration value="outlineView"/>
<enumeration value="sldSorterView"/>
<enumeration value="sldThumbnailView"/>
</restriction>
</simpleType>
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description HANDOUT_VIEWHandout ViewNOTES_MASTER_VIEWNotes Master ViewNOTES_VIEWNotes ViewOUTLINE_VIEWOutline ViewSLD_MASTER_VIEWSlide Master ViewSLD_SORTER_VIEWSlide Sorter ViewSLD_THUMBNAIL_VIEWSlide Thumbnail ViewSLD_VIEWNormal Slide View -
Method Summary
Modifier and Type Method Description static STViewTypefromValue(java.lang.String v)java.lang.Stringvalue()static STViewTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static STViewType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SLD_VIEW
Normal Slide View -
SLD_MASTER_VIEW
Slide Master View -
NOTES_VIEW
Notes View -
HANDOUT_VIEW
Handout View -
NOTES_MASTER_VIEW
Notes Master View -
OUTLINE_VIEW
Outline View -
SLD_SORTER_VIEW
Slide Sorter View -
SLD_THUMBNAIL_VIEW
Slide Thumbnail View
-
-
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
-