Package org.pptx4j.pml
Enum STSlideLayoutType
java.lang.Object
java.lang.Enum<STSlideLayoutType>
org.pptx4j.pml.STSlideLayoutType
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<STSlideLayoutType>,java.lang.constant.Constable
public enum STSlideLayoutType extends java.lang.Enum<STSlideLayoutType>
Java class for ST_SlideLayoutType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_SlideLayoutType">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="title"/>
<enumeration value="tx"/>
<enumeration value="twoColTx"/>
<enumeration value="tbl"/>
<enumeration value="txAndChart"/>
<enumeration value="chartAndTx"/>
<enumeration value="dgm"/>
<enumeration value="chart"/>
<enumeration value="txAndClipArt"/>
<enumeration value="clipArtAndTx"/>
<enumeration value="titleOnly"/>
<enumeration value="blank"/>
<enumeration value="txAndObj"/>
<enumeration value="objAndTx"/>
<enumeration value="objOnly"/>
<enumeration value="obj"/>
<enumeration value="txAndMedia"/>
<enumeration value="mediaAndTx"/>
<enumeration value="objOverTx"/>
<enumeration value="txOverObj"/>
<enumeration value="txAndTwoObj"/>
<enumeration value="twoObjAndTx"/>
<enumeration value="twoObjOverTx"/>
<enumeration value="fourObj"/>
<enumeration value="vertTx"/>
<enumeration value="clipArtAndVertTx"/>
<enumeration value="vertTitleAndTx"/>
<enumeration value="vertTitleAndTxOverChart"/>
<enumeration value="twoObj"/>
<enumeration value="objAndTwoObj"/>
<enumeration value="twoObjAndObj"/>
<enumeration value="cust"/>
<enumeration value="secHead"/>
<enumeration value="twoTxTwoObj"/>
<enumeration value="objTx"/>
<enumeration value="picTx"/>
</restriction>
</simpleType>
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description BLANKSlide Layout Type Enumeration ( Blank )CHARTChartCHART_AND_TXSlide Layout Type Enumeration ( Chart and Text )CLIP_ART_AND_TXClip Art and TextCLIP_ART_AND_VERT_TXClip Art and Vertical TextCUSTSlide Layout Type Enumeration ( Custom )DGMSlide Layout Type Enumeration ( Diagram )FOUR_OBJFour ObjectsMEDIA_AND_TXSlide Layout Type Enumeration ( Media and Text )OBJTitle and ObjectOBJ_AND_TWO_OBJObject and Two ObjectOBJ_AND_TXSlide Layout Type Enumeration ( Object and Text )OBJ_ONLYObjectOBJ_OVER_TXSlide Layout Type Enumeration ( Object over Text)OBJ_TXTitle, Object, and CaptionPIC_TXPicture and CaptionSEC_HEADSection HeaderTBLSlide Layout Type Enumeration ( Table )TITLESlide Layout Type Enumeration ( Title )TITLE_ONLYSlide Layout Type Enumeration ( Title Only )TWO_COL_TXSlide Layout Type Enumeration ( Two Column Text )TWO_OBJTwo ObjectsTWO_OBJ_AND_OBJTwo Objects and ObjectTWO_OBJ_AND_TXTwo Objects and TextTWO_OBJ_OVER_TXTwo Objects over TextTWO_TX_TWO_OBJTwo Text and Two ObjectsTXSlide Layout Type Enumeration ( Text )TX_AND_CHARTSlide Layout Type Enumeration ( Text and Chart )TX_AND_CLIP_ARTText and Clip ArtTX_AND_MEDIASlide Layout Type Enumeration ( Text and Media )TX_AND_OBJSlide Layout Type Enumeration ( Text and Object )TX_AND_TWO_OBJText and Two ObjectsTX_OVER_OBJSlide Layout Type Enumeration ( Text over Object)VERT_TITLE_AND_TXVertical Title and TextVERT_TITLE_AND_TX_OVER_CHARTVertical Title and Text Over ChartVERT_TXVertical Text -
Method Summary
Modifier and Type Method Description static STSlideLayoutTypefromValue(java.lang.String v)java.lang.Stringvalue()static STSlideLayoutTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static STSlideLayoutType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TITLE
Slide Layout Type Enumeration ( Title ) -
TX
Slide Layout Type Enumeration ( Text ) -
TWO_COL_TX
Slide Layout Type Enumeration ( Two Column Text ) -
TBL
Slide Layout Type Enumeration ( Table ) -
TX_AND_CHART
Slide Layout Type Enumeration ( Text and Chart ) -
CHART_AND_TX
Slide Layout Type Enumeration ( Chart and Text ) -
DGM
Slide Layout Type Enumeration ( Diagram ) -
CHART
Chart -
TX_AND_CLIP_ART
Text and Clip Art -
CLIP_ART_AND_TX
Clip Art and Text -
TITLE_ONLY
Slide Layout Type Enumeration ( Title Only ) -
BLANK
Slide Layout Type Enumeration ( Blank ) -
TX_AND_OBJ
Slide Layout Type Enumeration ( Text and Object ) -
OBJ_AND_TX
Slide Layout Type Enumeration ( Object and Text ) -
OBJ_ONLY
Object -
OBJ
Title and Object -
TX_AND_MEDIA
Slide Layout Type Enumeration ( Text and Media ) -
MEDIA_AND_TX
Slide Layout Type Enumeration ( Media and Text ) -
OBJ_OVER_TX
Slide Layout Type Enumeration ( Object over Text) -
TX_OVER_OBJ
Slide Layout Type Enumeration ( Text over Object) -
TX_AND_TWO_OBJ
Text and Two Objects -
TWO_OBJ_AND_TX
Two Objects and Text -
TWO_OBJ_OVER_TX
Two Objects over Text -
FOUR_OBJ
Four Objects -
VERT_TX
Vertical Text -
CLIP_ART_AND_VERT_TX
Clip Art and Vertical Text -
VERT_TITLE_AND_TX
Vertical Title and Text -
VERT_TITLE_AND_TX_OVER_CHART
Vertical Title and Text Over Chart -
TWO_OBJ
Two Objects -
OBJ_AND_TWO_OBJ
Object and Two Object -
TWO_OBJ_AND_OBJ
Two Objects and Object -
CUST
Slide Layout Type Enumeration ( Custom ) -
SEC_HEAD
Section Header -
TWO_TX_TWO_OBJ
Two Text and Two Objects -
OBJ_TX
Title, Object, and Caption -
PIC_TX
Picture and Caption
-
-
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
-