com.azalient.api.file.xls
Enum BookF.DataType
java.lang.Object
java.lang.Enum<BookF.DataType>
com.azalient.api.file.xls.BookF.DataType
- All Implemented Interfaces:
- Serializable, Comparable<BookF.DataType>
- Enclosing interface:
- BookF
public static enum BookF.DataType
- extends Enum<BookF.DataType>
|
Method Summary |
static BookF.DataType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static BookF.DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
STRING
public static final BookF.DataType STRING
INTEGER
public static final BookF.DataType INTEGER
DOUBLE
public static final BookF.DataType DOUBLE
DATE
public static final BookF.DataType DATE
PERCENT
public static final BookF.DataType PERCENT
values
public static BookF.DataType[] 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 (BookF.DataType c : BookF.DataType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static BookF.DataType 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 name
NullPointerException - if the argument is null