com.jxcell
Enum CellModifyEvent.ModifyAction

java.lang.Object
  extended by java.lang.Enum<CellModifyEvent.ModifyAction>
      extended by 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>


Enum Constant Summary
CTRL_DRAG_AND_DROP
           
CTRL_V
           
CTRL_X_CTRL_V
           
DRAG_AND_DROP
           
FILL_HANDLE
           
KEYEVENT_DELETE
           
OTHER
           
RECALC
           
REDO
           
UNDO
           
 
Method Summary
static CellModifyEvent.ModifyAction valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CellModifyEvent.ModifyAction[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
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
 

Enum Constant Detail

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
Method Detail

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