public static enum Profile.EnumType extends Enum<Profile.EnumType>
| Enum Constant and Description |
|---|
VALUE_ANGRY |
VALUE_CARE |
VALUE_HAHA |
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.
|
public static final Profile.EnumType VALUE_ANGRY
public static final Profile.EnumType VALUE_CARE
public static final Profile.EnumType VALUE_HAHA
public static final Profile.EnumType VALUE_LIKE
public static final Profile.EnumType VALUE_LOVE
public static final Profile.EnumType VALUE_NONE
public static final Profile.EnumType VALUE_PRIDE
public static final Profile.EnumType VALUE_SAD
public static final Profile.EnumType VALUE_THANKFUL
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 © 2020. All rights reserved.