public enum VerticalAlignment extends Enum<VerticalAlignment> implements Enumerator
ExcelPackage.getVerticalAlignment()
Enum Constant and Description |
---|
BOTTOM_LITERAL
The 'Bottom' literal object.
|
CENTER_LITERAL
The 'Center' literal object.
|
DISTRIBUTED_LITERAL
The 'Distributed' literal object.
|
JUSTIFY_LITERAL
The 'Justify' literal object.
|
TOP_LITERAL
The 'Top' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
BOTTOM
The 'Bottom' literal value.
|
static int |
CENTER
The 'Center' literal value.
|
static int |
DISTRIBUTED
The 'Distributed' literal value.
|
static int |
JUSTIFY
The 'Justify' literal value.
|
static int |
TOP
The 'Top' literal value.
|
static List<VerticalAlignment> |
VALUES
A public read-only list of all the 'Vertical Alignment' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static VerticalAlignment |
get(int value)
Returns the 'Vertical Alignment' literal with the specified integer value.
|
static VerticalAlignment |
get(String literal)
Returns the 'Vertical Alignment' literal with the specified literal value.
|
static VerticalAlignment |
getByName(String name)
Returns the 'Vertical Alignment' literal with the specified name.
|
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static VerticalAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VerticalAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerticalAlignment BOTTOM_LITERAL
BOTTOM
public static final VerticalAlignment CENTER_LITERAL
CENTER
public static final VerticalAlignment TOP_LITERAL
TOP
public static final VerticalAlignment JUSTIFY_LITERAL
JUSTIFY
public static final VerticalAlignment DISTRIBUTED_LITERAL
DISTRIBUTED
public static final int BOTTOM
BOTTOM_LITERAL
,
Constant Field Valuespublic static final int CENTER
CENTER_LITERAL
,
Constant Field Valuespublic static final int TOP
TOP_LITERAL
,
Constant Field Valuespublic static final int JUSTIFY
JUSTIFY_LITERAL
,
Constant Field Valuespublic static final int DISTRIBUTED
DISTRIBUTED_LITERAL
,
Constant Field Valuespublic static final List<VerticalAlignment> VALUES
public static VerticalAlignment[] values()
for (VerticalAlignment c : VerticalAlignment.values()) System.out.println(c);
public static 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 nullpublic static VerticalAlignment get(String literal)
literal
- the literal.null
.public static VerticalAlignment getByName(String name)
name
- the name.null
.public static VerticalAlignment get(int value)
value
- the integer value.null
.public int getValue()
getValue
in interface Enumerator
public String getName()
getName
in interface Enumerator
public String getLiteral()
getLiteral
in interface Enumerator
public String toString()
toString
in class Enum<VerticalAlignment>