public enum EmojiImageType extends Enum<EmojiImageType>
| Enum Constant and Description |
|---|
IMAGE_ONLY |
UNICODE_FALLBACK_TO_IMAGE |
UNICODE_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static EmojiImageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmojiImageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmojiImageType IMAGE_ONLY
public static final EmojiImageType UNICODE_FALLBACK_TO_IMAGE
public static final EmojiImageType UNICODE_ONLY
public static EmojiImageType[] values()
for (EmojiImageType c : EmojiImageType.values()) System.out.println(c);
public static EmojiImageType 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 nullCopyright © 2018. All rights reserved.