public enum PresentationElementClasses extends java.lang.Enum<PresentationElementClasses> implements java.util.function.Supplier<PresentationElementClass>
Enum Constant and Description |
---|
EQUATION |
FIGURE |
IMAGE |
LIST |
OPAQUE_FIGURE |
OPAQUE_IMAGE |
OPAQUE_LIST |
OPAQUE_PARAGRAPH |
OPAQUE_SECTION |
OPAQUE_TABLE |
PARAGRAPH |
SECTION |
TABLE |
Modifier and Type | Method and Description |
---|---|
PresentationElementClass |
get() |
static PresentationElementClasses |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PresentationElementClasses[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PresentationElementClasses EQUATION
public static final PresentationElementClasses FIGURE
public static final PresentationElementClasses IMAGE
public static final PresentationElementClasses LIST
public static final PresentationElementClasses OPAQUE_FIGURE
public static final PresentationElementClasses OPAQUE_IMAGE
public static final PresentationElementClasses OPAQUE_LIST
public static final PresentationElementClasses OPAQUE_PARAGRAPH
public static final PresentationElementClasses OPAQUE_SECTION
public static final PresentationElementClasses OPAQUE_TABLE
public static final PresentationElementClasses PARAGRAPH
public static final PresentationElementClasses SECTION
public static final PresentationElementClasses TABLE
public static PresentationElementClasses[] values()
for (PresentationElementClasses c : PresentationElementClasses.values()) System.out.println(c);
public static PresentationElementClasses 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 nullpublic PresentationElementClass get()
get
in interface java.util.function.Supplier<PresentationElementClass>