public enum VerticalAlignEnum extends Enum<VerticalAlignEnum> implements JREnum
| Modifier and Type | Method and Description |
|---|---|
static VerticalAlignEnum |
getByName(String name) |
static VerticalAlignEnum |
getByValue(byte value) |
static VerticalAlignEnum |
getByValue(Byte value) |
String |
getName() |
byte |
getValue() |
Byte |
getValueByte() |
static VerticalAlignEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VerticalAlignEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerticalAlignEnum TOP
public static final VerticalAlignEnum MIDDLE
public static final VerticalAlignEnum BOTTOM
public static final VerticalAlignEnum JUSTIFIED
public static VerticalAlignEnum[] values()
for (VerticalAlignEnum c : VerticalAlignEnum.values()) System.out.println(c);
public static VerticalAlignEnum 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 Byte getValueByte()
getValueByte in interface JREnumpublic static VerticalAlignEnum getByName(String name)
public static VerticalAlignEnum getByValue(Byte value)
public static VerticalAlignEnum getByValue(byte value)
Copyright © 2012. All Rights Reserved.