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