|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<OdfSlide.SlideLayout>
org.odftoolkit.odfdom.doc.presentation.OdfSlide.SlideLayout
public static enum OdfSlide.SlideLayout
A slide layout is a slide with some predefine placeholder. we define some template layout as below: "blank" template is a slide without any filled element, "title_only" template is a slide with a title, "title_outline" template is a slide with a title and an outline block, "title_text" template is a slide with a title and a text block, "title_two_text_block" template is a slide with a title two text blocks.
Enum Constant Summary | |
---|---|
BLANK
Blank, a blank presentation |
|
TITLE_ONLY
Title_only, the presentation with title only |
|
TITLE_OUTLINE
Title_outline, the presentation with outline |
|
TITLE_PLUS_2_TEXT_BLOCK
title_two_text_block, the presentation with title and two text blocks |
|
TITLE_PLUS_TEXT
Title_text, the presentation with title and one text block |
Method Summary | |
---|---|
static OdfSlide.SlideLayout |
enumValueOf(String aString)
Return a template slide type. |
String |
toString()
Return the slide template type value. |
static String |
toString(OdfSlide.SlideLayout aEnum)
Return the name of the template slide type. |
static OdfSlide.SlideLayout |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static OdfSlide.SlideLayout[] |
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, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final OdfSlide.SlideLayout BLANK
public static final OdfSlide.SlideLayout TITLE_ONLY
public static final OdfSlide.SlideLayout TITLE_OUTLINE
public static final OdfSlide.SlideLayout TITLE_PLUS_TEXT
public static final OdfSlide.SlideLayout TITLE_PLUS_2_TEXT_BLOCK
Method Detail |
---|
public static OdfSlide.SlideLayout[] values()
for (OdfSlide.SlideLayout c : OdfSlide.SlideLayout.values()) System.out.println(c);
public static OdfSlide.SlideLayout valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<OdfSlide.SlideLayout>
public static String toString(OdfSlide.SlideLayout aEnum)
aEnum
- a SlideLayout
public static OdfSlide.SlideLayout enumValueOf(String aString)
aString
- the name of the slide template type
SlideLayout
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |