public enum VerticalAlignment extends java.lang.Enum<VerticalAlignment>
| Enum Constant and Description | 
|---|
| BOTTOMAnchor the text at the bottom of the bounding rectangle. | 
| DISTRIBUTEDAnchor the text so that it is distributed vertically. | 
| JUSTIFIEDAnchor the text so that it is justified vertically. | 
| MIDDLEAnchor the text at the middle of the bounding rectangle | 
| TOPAnchor the text at the top of the bounding rectangle | 
| Modifier and Type | Method and Description | 
|---|---|
| static VerticalAlignment | valueOf(java.lang.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 TOP
public static final VerticalAlignment MIDDLE
public static final VerticalAlignment BOTTOM
public static final VerticalAlignment JUSTIFIED
 When text is horizontal, this spaces out the actual lines of
 text and is almost always identical in behavior to
 DISTRIBUTED (special case: if only 1 line, then anchored at top).
 
 When text is vertical, then it justifies the letters
 vertically. This is different than DISTRIBUTED,
 because in some cases such as very little text in a line,
 it will not justify.
 
public static final VerticalAlignment DISTRIBUTED
 When text is horizontal, this spaces out the actual lines
 of text and is almost always identical in behavior to
 JUSTIFIED (special case: if only 1 line, then anchored in middle).
 
 When text is vertical, then it distributes the letters vertically.
 This is different than JUSTIFIED, because it always forces distribution
 of the words, even if there are only one or two words in a line.
public static VerticalAlignment[] values()
for (VerticalAlignment c : VerticalAlignment.values()) System.out.println(c);
public static VerticalAlignment valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright 2020 The Apache Software Foundation or its licensors, as applicable.