public static enum Page.EnumAlignment extends Enum<Page.EnumAlignment>
| Enum Constant and Description |
|---|
VALUE_LEFT |
VALUE_RIGHT |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Page.EnumAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Page.EnumAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="LEFT") public static final Page.EnumAlignment VALUE_LEFT
@SerializedName(value="RIGHT") public static final Page.EnumAlignment VALUE_RIGHT
public static Page.EnumAlignment[] values()
for (Page.EnumAlignment c : Page.EnumAlignment.values()) System.out.println(c);
public static Page.EnumAlignment 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 toString()
toString in class Enum<Page.EnumAlignment>Copyright © 2024. All rights reserved.