public enum GridCellType extends Enum<GridCellType>
Enum Constant and Description |
---|
BUTTON
带有一个嵌入式按钮的单元格
|
CHECK_BOX
带有一个嵌入式复选框的单元格
|
NORMAL
正常单元格
|
RADIO_BUTTON
带有一个嵌入式单选按钮的单元格。
|
VALUELIST
带有一个嵌入式值列表的单元格
|
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.