public enum EmojiGroup extends Enum<EmojiGroup>
| Enum Constant and Description |
|---|
ACTIVITIES |
ANIMALS_AND_NATURE |
COMPONENT |
FLAGS |
FOOD_AND_DRINK |
OBJECTS |
PEOPLE_AND_BODY |
SMILEYS_AND_EMOTION |
SYMBOLS |
TRAVEL_AND_PLACES |
| Modifier and Type | Method and Description |
|---|---|
static EmojiGroup |
fromString(String name)
Gets the emoji group for the given name.
|
EnumSet<EmojiSubGroup> |
getEmojiSubGroups()
Gets all emoji subgroups of this group.
|
static List<EmojiGroup> |
getGroups()
Gets all emoji groups.
|
String |
getName()
Gets the name of the group.
|
static EmojiGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmojiGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmojiGroup ACTIVITIES
public static final EmojiGroup ANIMALS_AND_NATURE
public static final EmojiGroup COMPONENT
public static final EmojiGroup FLAGS
public static final EmojiGroup FOOD_AND_DRINK
public static final EmojiGroup OBJECTS
public static final EmojiGroup PEOPLE_AND_BODY
public static final EmojiGroup SMILEYS_AND_EMOTION
public static final EmojiGroup SYMBOLS
public static final EmojiGroup TRAVEL_AND_PLACES
public static EmojiGroup[] values()
for (EmojiGroup c : EmojiGroup.values()) System.out.println(c);
public static EmojiGroup 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 getName()
public static List<EmojiGroup> getGroups()
public EnumSet<EmojiSubGroup> getEmojiSubGroups()
public static EmojiGroup fromString(String name)
name - The name of the group.