public enum STYAlign extends Enum<STYAlign>
Java class for ST_YAlign.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_YAlign"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="inline"/> <enumeration value="top"/> <enumeration value="center"/> <enumeration value="bottom"/> <enumeration value="inside"/> <enumeration value="outside"/> </restriction> </simpleType>
Enum Constant and Description |
---|
BOTTOM
Bottom
|
CENTER
Centered Vertically
|
INLINE
In line With Text
|
INSIDE
Inside Anchor Extents
|
OUTSIDE
Outside Anchor Extents
|
TOP
Top
|
Modifier and Type | Method and Description |
---|---|
static STYAlign |
fromValue(String v) |
String |
value() |
static STYAlign |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STYAlign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STYAlign INLINE
public static final STYAlign TOP
public static final STYAlign CENTER
public static final STYAlign BOTTOM
public static final STYAlign INSIDE
public static final STYAlign OUTSIDE
public static STYAlign[] values()
for (STYAlign c : STYAlign.values()) System.out.println(c);
public static STYAlign 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 String value()
Copyright © 2007-2019. All Rights Reserved.