public enum DataRowState extends Enum<DataRowState>
| Enum Constant and Description |
|---|
Deleted
Строка присоединена к таблице, и помечена для удаления
|
Detached
Строка не присоединена к таблице
|
Fixed
Строка присоединена к таблице и содержит не изменные данные
|
Inserted
Строка присоединена к таблице, и помечена для добавления
|
Updated
Строка присоединена к таблице и содержит изменные данные
|
| Modifier and Type | Method and Description |
|---|---|
static DataRowState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataRowState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataRowState Detached
public static final DataRowState Fixed
public static final DataRowState Updated
public static final DataRowState Inserted
public static final DataRowState Deleted
public static DataRowState[] values()
for (DataRowState c : DataRowState.values()) System.out.println(c);
public static DataRowState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.