public enum SsmlActivePane extends Enum<SsmlActivePane>
| Enum Constant and Description |
|---|
bottomLeft |
bottomRight |
topLeft |
topRight |
| Modifier and Type | Method and Description |
|---|---|
static SsmlActivePane |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SsmlActivePane[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SsmlActivePane bottomRight
public static final SsmlActivePane topRight
public static final SsmlActivePane bottomLeft
public static final SsmlActivePane topLeft
public static SsmlActivePane[] values()
for (SsmlActivePane c : SsmlActivePane.values()) System.out.println(c);
public static SsmlActivePane 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