public enum SsmlVerticalAlign extends Enum<SsmlVerticalAlign>
| Enum Constant and Description | 
|---|
bottom  | 
center  | 
distributed  | 
justify  | 
top  | 
| Modifier and Type | Method and Description | 
|---|---|
static SsmlVerticalAlign | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static SsmlVerticalAlign[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final SsmlVerticalAlign top
public static final SsmlVerticalAlign center
public static final SsmlVerticalAlign bottom
public static final SsmlVerticalAlign justify
public static final SsmlVerticalAlign distributed
public static SsmlVerticalAlign[] values()
for (SsmlVerticalAlign c : SsmlVerticalAlign.values()) System.out.println(c);
public static SsmlVerticalAlign 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 null
      jataylor@hairyfatguy.com