nl.coderight.jazz.form.field
Enum TableField.AutoResizeMode

java.lang.Object
  extended by java.lang.Enum<TableField.AutoResizeMode>
      extended by nl.coderight.jazz.form.field.TableField.AutoResizeMode
All Implemented Interfaces:
Serializable, Comparable<TableField.AutoResizeMode>
Enclosing class:
TableField<V>

public static enum TableField.AutoResizeMode
extends Enum<TableField.AutoResizeMode>


Enum Constant Summary
ALL_COLUMNS
           
AUTOFIT
           
LAST_COLUMN
           
NEXT_COLUMN
           
OFF
           
SUBSEQUENT_COLUMNS
           
 
Method Summary
static TableField.AutoResizeMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TableField.AutoResizeMode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OFF

public static final TableField.AutoResizeMode OFF

NEXT_COLUMN

public static final TableField.AutoResizeMode NEXT_COLUMN

SUBSEQUENT_COLUMNS

public static final TableField.AutoResizeMode SUBSEQUENT_COLUMNS

LAST_COLUMN

public static final TableField.AutoResizeMode LAST_COLUMN

ALL_COLUMNS

public static final TableField.AutoResizeMode ALL_COLUMNS

AUTOFIT

public static final TableField.AutoResizeMode AUTOFIT
Method Detail

values

public static TableField.AutoResizeMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (TableField.AutoResizeMode c : TableField.AutoResizeMode.values())
    System.out.println(c);

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

valueOf

public static TableField.AutoResizeMode 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
NullPointerException - if the argument is null


Copyright 2010 CodeRight, All rights reserved.