public enum CellFormatType extends 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(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(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 nullCopyright © 2010 - 2020 Adobe. All Rights Reserved