public enum GridCellType extends Enum<GridCellType>
Enum Constant and Description |
---|
BUTTON
Cell with an embedded button
|
CHECK_BOX
Cell with an embedded check box
|
NORMAL
Normal cell
|
RADIO_BUTTON
Cell with an embedded radio button
|
VALUELIST
Cell with an embedded value list
|
Modifier and Type | Method and Description |
---|---|
static GridCellType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridCellType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridCellType NORMAL
public static final GridCellType BUTTON
public static final GridCellType CHECK_BOX
public static final GridCellType VALUELIST
public static final GridCellType RADIO_BUTTON
public static GridCellType[] values()
for (GridCellType c : GridCellType.values()) System.out.println(c);
public static GridCellType 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 2009-2012 Micro Focus. All Rights Reserved.