public enum DocumentFamily extends Enum<DocumentFamily>
| Enum Constant and Description |
|---|
DRAWING |
PRESENTATION |
SPREADSHEET |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static DocumentFamily |
valueOf(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(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 nullCopyright © 2003–2015. All rights reserved.