public enum SheetUpdateEvent extends Enum<SheetUpdateEvent>
Enum Constant and Description |
---|
ADD_SHEET |
DELETE_DIMENSION |
DELETE_SHEET |
ERROR |
UPDATE_RANGE |
Modifier and Type | Method and Description |
---|---|
static SheetUpdateEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SheetUpdateEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SheetUpdateEvent ADD_SHEET
public static final SheetUpdateEvent UPDATE_RANGE
public static final SheetUpdateEvent DELETE_DIMENSION
public static final SheetUpdateEvent DELETE_SHEET
public static final SheetUpdateEvent ERROR
public static SheetUpdateEvent[] values()
for (SheetUpdateEvent c : SheetUpdateEvent.values()) System.out.println(c);
public static SheetUpdateEvent 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 © 2025. All rights reserved.