public enum VertAlignTextMode extends Enum<VertAlignTextMode>
VertAlignTextMode
specifies how to arrange a text block in an
available area.Modifier and Type | Method and Description |
---|---|
static VertAlignTextMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VertAlignTextMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VertAlignTextMode TOP
public static final VertAlignTextMode CENTER
public static final VertAlignTextMode BOTTOM
public static VertAlignTextMode[] values()
for (VertAlignTextMode c : VertAlignTextMode.values()) System.out.println(c);
public static VertAlignTextMode 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 © 2017. All rights reserved.