public enum CellPropertyCategory extends Enum<CellPropertyCategory>
| Enum Constant and Description |
|---|
BOOL |
BORDER_TYPE |
COLOR |
INT |
OTHER |
SHORT |
| Modifier and Type | Method and Description |
|---|---|
static CellPropertyCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellPropertyCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellPropertyCategory SHORT
public static final CellPropertyCategory COLOR
public static final CellPropertyCategory INT
public static final CellPropertyCategory BOOL
public static final CellPropertyCategory BORDER_TYPE
public static final CellPropertyCategory OTHER
public static CellPropertyCategory[] values()
for (CellPropertyCategory c : CellPropertyCategory.values()) System.out.println(c);
public static CellPropertyCategory 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 null