public static enum CellStyle.VerticalAlignment extends Enum<CellStyle.VerticalAlignment>
Modifier and Type | Method and Description |
---|---|
static CellStyle.VerticalAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellStyle.VerticalAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellStyle.VerticalAlignment TOP
public static final CellStyle.VerticalAlignment CENTER
public static final CellStyle.VerticalAlignment BOTTOM
public static final CellStyle.VerticalAlignment JUSTIFY
public static CellStyle.VerticalAlignment[] values()
for (CellStyle.VerticalAlignment c : CellStyle.VerticalAlignment.values()) System.out.println(c);
public static CellStyle.VerticalAlignment 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.