Package io.keikai.model
Enum SCell.CellType
- java.lang.Object
-
- java.lang.Enum<SCell.CellType>
-
- io.keikai.model.SCell.CellType
-
- All Implemented Interfaces:
Serializable
,Comparable<SCell.CellType>
- Enclosing interface:
- SCell
public static enum SCell.CellType extends Enum<SCell.CellType>
- Since:
- 3.5.0
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
BLANK
public static final SCell.CellType BLANK
-
STRING
public static final SCell.CellType STRING
-
FORMULA
public static final SCell.CellType FORMULA
-
NUMBER
public static final SCell.CellType NUMBER
-
BOOLEAN
public static final SCell.CellType BOOLEAN
-
ERROR
public static final SCell.CellType ERROR
-
-
Method Detail
-
values
public static SCell.CellType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SCell.CellType c : SCell.CellType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SCell.CellType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public int value()
-
-