public enum FormatKind extends Enum<FormatKind>
| Enum Constant and Description |
|---|
FLOW |
SPREADSHEET |
WYSIWYG |
WYSIWYG_SINGLE_PAGE |
| Modifier and Type | Method and Description |
|---|---|
static FormatKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormatKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormatKind WYSIWYG
public static final FormatKind FLOW
public static final FormatKind SPREADSHEET
public static final FormatKind WYSIWYG_SINGLE_PAGE
public static FormatKind[] values()
for (FormatKind c : FormatKind.values()) System.out.println(c);
public static FormatKind 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 null