public enum EmojiType extends Enum<EmojiType>
| Enum Constant and Description |
|---|
HTML_DECIMAL
Represents a format for encoding emojis using HTML decimal notation.
|
HTML_HEXADECIMAL
Represents a format for encoding emojis using HTML hexadecimal notation.
|
UNICODE
Represents the Unicode representation of an emoji.
|
URL_ENCODED
Represents an encoding format in which emojis are transformed into
a URL-safe format by replacing non-ASCII characters with percent-encoded
values.
|
| Modifier and Type | Method and Description |
|---|---|
static EmojiType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmojiType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmojiType HTML_DECIMAL
public static final EmojiType HTML_HEXADECIMAL
public static final EmojiType URL_ENCODED
public static final EmojiType UNICODE
public static EmojiType[] values()
for (EmojiType c : EmojiType.values()) System.out.println(c);
public static EmojiType 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 null