public static enum CellStyle.Alignment extends Enum<CellStyle.Alignment>
Enum Constant and Description |
---|
CENTER |
CENTER_SELECTION |
FILL |
GENERAL |
JUSTIFY |
LEFT |
RIGHT |
Modifier and Type | Method and Description |
---|---|
static CellStyle.Alignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellStyle.Alignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellStyle.Alignment GENERAL
public static final CellStyle.Alignment LEFT
public static final CellStyle.Alignment CENTER
public static final CellStyle.Alignment RIGHT
public static final CellStyle.Alignment FILL
public static final CellStyle.Alignment JUSTIFY
public static final CellStyle.Alignment CENTER_SELECTION
public static CellStyle.Alignment[] values()
for (CellStyle.Alignment c : CellStyle.Alignment.values()) System.out.println(c);
public static CellStyle.Alignment 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 © 2020. All rights reserved.