javax.rad.model.event
Enum DataBookEvent.ChangedType

java.lang.Object
  extended by java.lang.Enum<DataBookEvent.ChangedType>
      extended by javax.rad.model.event.DataBookEvent.ChangedType
All Implemented Interfaces:
Serializable, Comparable<DataBookEvent.ChangedType>
Enclosing class:
DataBookEvent

public static enum DataBookEvent.ChangedType
extends Enum<DataBookEvent.ChangedType>

Specifies the type of change.


Enum Constant Summary
AFTER_COLUMN_SELECTED
          selected column has been changed.
AFTER_DELETED
          IDataRow has been deleted into the storage.
AFTER_DELETING
          IDataRow has been deleted in memory.
AFTER_INSERTED
          IDataRow has been inserted into the storage.
AFTER_INSERTING
          IDataRow has been inserted in memory.
AFTER_RELOAD
          IDataRow has been refreshed.
AFTER_RESTORE
          IDataRow has been restored.
AFTER_ROW_SELECTED
          selected row has been changed.
AFTER_UPDATED
          IDataRow has been updated into the storage.
AFTER_UPDATING
          IDataRow has been updated in memory.
BEFORE_COLUMN_SELECTED
          selected column will be change.
BEFORE_DELETED
          IDataRow will be deleted into the storage.
BEFORE_DELETING
          IDataRow will be deleted in memory.
BEFORE_INSERTED
          IDataRow will be inserted into the storage.
BEFORE_INSERTING
          IDataRow will be inserted in memory.
BEFORE_RELOAD
          IDataRow will be refreshed.
BEFORE_RESTORE
          IDataRow will be restored.
BEFORE_ROW_SELECTED
          selected row will be change.
BEFORE_UPDATED
          IDataRow will be updated into the storage.
BEFORE_UPDATING
          IDataRow will be updated in memory.
 
Method Summary
static DataBookEvent.ChangedType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DataBookEvent.ChangedType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BEFORE_ROW_SELECTED

public static final DataBookEvent.ChangedType BEFORE_ROW_SELECTED
selected row will be change.


AFTER_ROW_SELECTED

public static final DataBookEvent.ChangedType AFTER_ROW_SELECTED
selected row has been changed.


BEFORE_INSERTING

public static final DataBookEvent.ChangedType BEFORE_INSERTING
IDataRow will be inserted in memory.


AFTER_INSERTING

public static final DataBookEvent.ChangedType AFTER_INSERTING
IDataRow has been inserted in memory.


BEFORE_INSERTED

public static final DataBookEvent.ChangedType BEFORE_INSERTED
IDataRow will be inserted into the storage.


AFTER_INSERTED

public static final DataBookEvent.ChangedType AFTER_INSERTED
IDataRow has been inserted into the storage.


BEFORE_UPDATING

public static final DataBookEvent.ChangedType BEFORE_UPDATING
IDataRow will be updated in memory.


AFTER_UPDATING

public static final DataBookEvent.ChangedType AFTER_UPDATING
IDataRow has been updated in memory.


BEFORE_UPDATED

public static final DataBookEvent.ChangedType BEFORE_UPDATED
IDataRow will be updated into the storage.


AFTER_UPDATED

public static final DataBookEvent.ChangedType AFTER_UPDATED
IDataRow has been updated into the storage.


BEFORE_DELETING

public static final DataBookEvent.ChangedType BEFORE_DELETING
IDataRow will be deleted in memory.


AFTER_DELETING

public static final DataBookEvent.ChangedType AFTER_DELETING
IDataRow has been deleted in memory.


BEFORE_DELETED

public static final DataBookEvent.ChangedType BEFORE_DELETED
IDataRow will be deleted into the storage.


AFTER_DELETED

public static final DataBookEvent.ChangedType AFTER_DELETED
IDataRow has been deleted into the storage.


BEFORE_RESTORE

public static final DataBookEvent.ChangedType BEFORE_RESTORE
IDataRow will be restored.


AFTER_RESTORE

public static final DataBookEvent.ChangedType AFTER_RESTORE
IDataRow has been restored.


BEFORE_RELOAD

public static final DataBookEvent.ChangedType BEFORE_RELOAD
IDataRow will be refreshed.


AFTER_RELOAD

public static final DataBookEvent.ChangedType AFTER_RELOAD
IDataRow has been refreshed.


BEFORE_COLUMN_SELECTED

public static final DataBookEvent.ChangedType BEFORE_COLUMN_SELECTED
selected column will be change.


AFTER_COLUMN_SELECTED

public static final DataBookEvent.ChangedType AFTER_COLUMN_SELECTED
selected column has been changed.

Method Detail

values

public static final DataBookEvent.ChangedType[] 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(DataBookEvent.ChangedType c : DataBookEvent.ChangedType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static DataBookEvent.ChangedType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name


Copyright © 2009 SIB Visions GmbH. All Rights Reserved.