org.jdesktop.dataset
Enum DataRow.DataRowStatus

java.lang.Object
  extended by java.lang.Enum<DataRow.DataRowStatus>
      extended by org.jdesktop.dataset.DataRow.DataRowStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DataRow.DataRowStatus>
Enclosing class:
DataRow

public static enum DataRow.DataRowStatus
extends java.lang.Enum<DataRow.DataRowStatus>

Flag indicating the status of the DataRow; these are described in the class JavaDoc.


Enum Constant Summary
DELETED
          The row was deleted from the table.
INSERTED
          The row was inserted into the table.
UNCHANGED
          The row has not been modified; no cells are modified.
UPDATED
          The row has been updated, at least one cell is modified.
 
Method Summary
static DataRow.DataRowStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DataRow.DataRowStatus[] 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

INSERTED

public static final DataRow.DataRowStatus INSERTED
The row was inserted into the table.


DELETED

public static final DataRow.DataRowStatus DELETED
The row was deleted from the table.


UPDATED

public static final DataRow.DataRowStatus UPDATED
The row has been updated, at least one cell is modified.


UNCHANGED

public static final DataRow.DataRowStatus UNCHANGED
The row has not been modified; no cells are modified.

Method Detail

values

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

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

valueOf

public static DataRow.DataRowStatus 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


Copyright © 2005 Sun Microsystems All Rights Reserved.