com.jxcell
Enum CellModifyEvent.ModifyAction
java.lang.Object
java.lang.Enum<CellModifyEvent.ModifyAction>
com.jxcell.CellModifyEvent.ModifyAction
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<CellModifyEvent.ModifyAction>
- Enclosing class:
- CellModifyEvent
public static enum CellModifyEvent.ModifyAction
- extends java.lang.Enum<CellModifyEvent.ModifyAction>
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
CTRL_V
public static final CellModifyEvent.ModifyAction CTRL_V
CTRL_X_CTRL_V
public static final CellModifyEvent.ModifyAction CTRL_X_CTRL_V
KEYEVENT_DELETE
public static final CellModifyEvent.ModifyAction KEYEVENT_DELETE
FILL_HANDLE
public static final CellModifyEvent.ModifyAction FILL_HANDLE
DRAG_AND_DROP
public static final CellModifyEvent.ModifyAction DRAG_AND_DROP
CTRL_DRAG_AND_DROP
public static final CellModifyEvent.ModifyAction CTRL_DRAG_AND_DROP
UNDO
public static final CellModifyEvent.ModifyAction UNDO
REDO
public static final CellModifyEvent.ModifyAction REDO
RECALC
public static final CellModifyEvent.ModifyAction RECALC
OTHER
public static final CellModifyEvent.ModifyAction OTHER
values
public static final CellModifyEvent.ModifyAction[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(CellModifyEvent.ModifyAction c : CellModifyEvent.ModifyAction.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static CellModifyEvent.ModifyAction valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name