com.sibvisions.rad.ui.web.ext.gxt.control
Enum TableRow.RowState

java.lang.Object
  extended by java.lang.Enum<TableRow.RowState>
      extended by com.sibvisions.rad.ui.web.ext.gxt.control.TableRow.RowState
All Implemented Interfaces:
Serializable, Comparable<TableRow.RowState>
Enclosing class:
TableRow

public static enum TableRow.RowState
extends Enum<TableRow.RowState>

The valid row states.


Enum Constant Summary
Error
          the state for rows which contains modification errors.
New
          the state for new rows.
Valid
          the state for valid rows.
 
Method Summary
static TableRow.RowState valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TableRow.RowState[] 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

Valid

public static final TableRow.RowState Valid
the state for valid rows.


New

public static final TableRow.RowState New
the state for new rows.


Error

public static final TableRow.RowState Error
the state for rows which contains modification errors.

Method Detail

values

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

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

valueOf

public static TableRow.RowState valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name


Copyright © 2009 SIB Visions GmbH. All Rights Reserved.