public final class DataRowState
extends java.lang.Object
DataRow
object.Modifier and Type | Field and Description |
---|---|
static int |
ADDED
Specifies that the row has been added to a
DataRowCollection . |
static int |
DELETED
Specifies that the row was deleted using the
DataRow.delete() method of
the DataRow . |
static int |
DETACHED
Specifies that the row has been created but is not part of any
DataRowCollection . |
static int |
MODIFIED
Specifies that the row has been modified.
|
static int |
UNCHANGED
Specifies that the row has not changed.
|
public static final int DETACHED
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.public static final int UNCHANGED
public static final int ADDED
DataRowCollection
.public static final int DELETED
DataRow.delete()
method of
the DataRow
.public static final int MODIFIED