public enum CellFormatType extends java.lang.Enum<CellFormatType>
Enum Constant and Description |
---|
DATE
A date format.
|
ELAPSED
An elapsed time format.
|
GENERAL
The general (default) format; also used for "General".
|
NUMBER
A numeric format.
|
TEXT
A text format.
|
Modifier and Type | Method and Description |
---|---|
static CellFormatType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CellFormatType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellFormatType GENERAL
public static final CellFormatType NUMBER
public static final CellFormatType DATE
public static final CellFormatType ELAPSED
public static final CellFormatType TEXT
public static CellFormatType[] values()
for (CellFormatType c : CellFormatType.values()) System.out.println(c);
public static CellFormatType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright 2021 The Apache Software Foundation or its licensors, as applicable.