public static enum SCell.CellType extends Enum<SCell.CellType>
Enum Constant and Description |
---|
BLANK |
BOOLEAN |
ERROR |
FORMULA |
NUMBER |
STRING |
Modifier and Type | Method and Description |
---|---|
int |
value() |
static SCell.CellType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SCell.CellType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SCell.CellType BLANK
public static final SCell.CellType STRING
public static final SCell.CellType FORMULA
public static final SCell.CellType NUMBER
public static final SCell.CellType BOOLEAN
public static final SCell.CellType ERROR
public static SCell.CellType[] values()
for (SCell.CellType c : SCell.CellType.values()) System.out.println(c);
public static SCell.CellType 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 nullpublic int value()
Copyright © 2020. All rights reserved.