public enum DocumentType extends Enum<DocumentType>
The annotation document type
| Enum Constant and Description |
|---|
CELLS
Represents Excel format
|
DIAGRAM
Represents Diagram format
|
EMAIL
Represents Email format
|
HTML
Represents HTML format
|
IMAGES
Represents Image format
|
PDF
Represents Pdf format
|
SLIDES
Represents Powerpoint format
|
UNDEFINED
The undefined
|
WORDS
Represents Word format
|
| Modifier and Type | Method and Description |
|---|---|
static DocumentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentType CELLS
Represents Excel format
public static final DocumentType DIAGRAM
Represents Diagram format
public static final DocumentType EMAIL
Represents Email format
public static final DocumentType HTML
Represents HTML format
public static final DocumentType IMAGES
Represents Image format
public static final DocumentType PDF
Represents Pdf format
public static final DocumentType SLIDES
Represents Powerpoint format
public static final DocumentType UNDEFINED
The undefined
public static final DocumentType WORDS
Represents Word format
public static DocumentType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static DocumentType[] values()
for (DocumentType c : DocumentType.values()) System.out.println(c);
Copyright © 2024. All rights reserved.