DataRowState
Inheritance: java.lang.Object
public final class DataRowState
Specifies the state of a DataRow object.
Fields
Field | Description |
---|---|
DETACHED | Specifies that the row has been created but is not part of any DataRowCollection. |
UNCHANGED | Specifies that the row has not changed. |
ADDED | Specifies that the row has been added to a DataRowCollection. |
DELETED | Specifies that the row was deleted using the DataRow.delete() method of the DataRow. |
MODIFIED | Specifies that the row has been modified. |
DETACHED
public static final int DETACHED
Specifies that the row has been created but is not part of any DataRowCollection. A DataRow is in this state immediately after it has been created and before it is added to a collection, or if it has been removed from a collection.
UNCHANGED
public static final int UNCHANGED
Specifies that the row has not changed.
ADDED
public static final int ADDED
Specifies that the row has been added to a DataRowCollection.
DELETED
public static final int DELETED
Specifies that the row was deleted using the DataRow.delete() method of the DataRow.
MODIFIED
public static final int MODIFIED
Specifies that the row has been modified.