public static enum SpreadsheetAppEvent.Type extends Enum<SpreadsheetAppEvent.Type>
Enum Constant and Description |
---|
CREATED
Denotes that a workbook was created
|
LOADED
Denotes that a workbook was loaded
|
SAVED
Denotes that a workbook was saved
|
UNLOADED
Denotes that a workbook was unloaded
|
Modifier and Type | Method and Description |
---|---|
static SpreadsheetAppEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpreadsheetAppEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpreadsheetAppEvent.Type CREATED
public static final SpreadsheetAppEvent.Type LOADED
public static final SpreadsheetAppEvent.Type UNLOADED
public static final SpreadsheetAppEvent.Type SAVED
public static SpreadsheetAppEvent.Type[] values()
for (SpreadsheetAppEvent.Type c : SpreadsheetAppEvent.Type.values()) System.out.println(c);
public static SpreadsheetAppEvent.Type 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