public enum GridCellState extends Enum<GridCellState>
Enum Constant and Description |
---|
ERROR
错误单元格
|
INFO
信息单元格
|
NORMAL
正常单元格
|
WARNING
警告单元格
|
Modifier and Type | Method and Description |
---|---|
static GridCellState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridCellState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridCellState NORMAL
public static final GridCellState ERROR
public static final GridCellState WARNING
public static final GridCellState INFO
public static GridCellState[] values()
for (GridCellState c : GridCellState.values()) System.out.println(c);
public static GridCellState 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.