public static enum ViewRowImpl.RowState extends java.lang.Enum<ViewRowImpl.RowState>
| Enum Constant and Description | 
|---|
DEAD  | 
DELETED  | 
MODIFIED  | 
NEW  | 
UNMODIFIED  | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
isDead()  | 
boolean | 
isDeleted()  | 
boolean | 
isModified()  | 
boolean | 
isNew()  | 
boolean | 
isUnmodified()  | 
static ViewRowImpl.RowState | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static ViewRowImpl.RowState[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ViewRowImpl.RowState NEW
public static final ViewRowImpl.RowState UNMODIFIED
public static final ViewRowImpl.RowState MODIFIED
public static final ViewRowImpl.RowState DELETED
public static final ViewRowImpl.RowState DEAD
public static ViewRowImpl.RowState[] values()
for (ViewRowImpl.RowState c : ViewRowImpl.RowState.values()) System.out.println(c);
public static ViewRowImpl.RowState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean isModified()
public boolean isNew()
public boolean isUnmodified()
public boolean isDead()
public boolean isDeleted()