public static enum DocumentAtom.SlideSize extends java.lang.Enum<DocumentAtom.SlideSize>
Enum Constant and Description |
---|
A4_SIZED_PAPER
Slide size ratio is consistent with A4 paper.
|
BANNER
Slide size ratio is consistent with a banner.
|
CUSTOM
Slide size ratio that is not consistent with any of the other specified slide sizes in
this enumeration.
|
LETTER_SIZED_PAPER
Slide size ratio is consistent with letter paper.
|
ON_35MM
Slide size ratio is consistent with 35mm photo slides.
|
ON_SCREEN
Slide size ratio is consistent with a computer screen.
|
OVERHEAD
Slide size ratio is consistent with overhead projector slides.
|
Modifier and Type | Method and Description |
---|---|
static DocumentAtom.SlideSize |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DocumentAtom.SlideSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentAtom.SlideSize ON_SCREEN
public static final DocumentAtom.SlideSize LETTER_SIZED_PAPER
public static final DocumentAtom.SlideSize A4_SIZED_PAPER
public static final DocumentAtom.SlideSize ON_35MM
public static final DocumentAtom.SlideSize OVERHEAD
public static final DocumentAtom.SlideSize BANNER
public static final DocumentAtom.SlideSize CUSTOM
public static DocumentAtom.SlideSize[] values()
for (DocumentAtom.SlideSize c : DocumentAtom.SlideSize.values()) System.out.println(c);
public static DocumentAtom.SlideSize 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 nullCopyright 2020 The Apache Software Foundation or its licensors, as applicable.