public enum DocumentFamily extends java.lang.Enum<DocumentFamily>
| Enum Constant and Description |
|---|
DRAWING
Drawing documents (odg, png, svg, etc.)
|
PRESENTATION
Spreadsheet documents (odp, ppt, pptx, etc.)
|
SPREADSHEET
Spreadsheet documents (ods, xls, xlsx, csv, etc.)
|
TEXT
Text documents (odt, doc, docx, rtf, etc.)
|
| Modifier and Type | Method and Description |
|---|---|
static DocumentFamily |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DocumentFamily[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentFamily TEXT
public static final DocumentFamily SPREADSHEET
public static final DocumentFamily PRESENTATION
public static final DocumentFamily DRAWING
public static DocumentFamily[] values()
for (DocumentFamily c : DocumentFamily.values()) System.out.println(c);
public static DocumentFamily 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 null