com.azalient.api.file.xls
Enum CellF.Justification
java.lang.Object
java.lang.Enum<CellF.Justification>
com.azalient.api.file.xls.CellF.Justification
- All Implemented Interfaces:
- Serializable, Comparable<CellF.Justification>
- Enclosing interface:
- CellF
public static enum CellF.Justification
- extends Enum<CellF.Justification>
LEFT
public static final CellF.Justification LEFT
CENTRE
public static final CellF.Justification CENTRE
RIGHT
public static final CellF.Justification RIGHT
TOP
public static final CellF.Justification TOP
BOTTOM
public static final CellF.Justification BOTTOM
values
public static CellF.Justification[] 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 (CellF.Justification c : CellF.Justification.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static CellF.Justification 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