public static enum Profile.EnumType extends Enum<Profile.EnumType>
| Enum Constant and Description |
|---|
VALUE_ANGRY |
VALUE_CARE |
VALUE_FIRE |
VALUE_HAHA |
VALUE_HUNDRED |
VALUE_LIKE |
VALUE_LOVE |
VALUE_NONE |
VALUE_PRIDE |
VALUE_SAD |
VALUE_THANKFUL |
VALUE_WOW |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Profile.EnumType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Profile.EnumType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="ANGRY") public static final Profile.EnumType VALUE_ANGRY
@SerializedName(value="CARE") public static final Profile.EnumType VALUE_CARE
@SerializedName(value="FIRE") public static final Profile.EnumType VALUE_FIRE
@SerializedName(value="HAHA") public static final Profile.EnumType VALUE_HAHA
@SerializedName(value="HUNDRED") public static final Profile.EnumType VALUE_HUNDRED
@SerializedName(value="LIKE") public static final Profile.EnumType VALUE_LIKE
@SerializedName(value="LOVE") public static final Profile.EnumType VALUE_LOVE
@SerializedName(value="NONE") public static final Profile.EnumType VALUE_NONE
@SerializedName(value="PRIDE") public static final Profile.EnumType VALUE_PRIDE
@SerializedName(value="SAD") public static final Profile.EnumType VALUE_SAD
@SerializedName(value="THANKFUL") public static final Profile.EnumType VALUE_THANKFUL
@SerializedName(value="WOW") public static final Profile.EnumType VALUE_WOW
public static Profile.EnumType[] values()
for (Profile.EnumType c : Profile.EnumType.values()) System.out.println(c);
public static Profile.EnumType 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<Profile.EnumType>Copyright © 2024. All rights reserved.