public enum EmojiShortcutType extends Enum<EmojiShortcutType>
| Enum Constant and Description |
|---|
ANY_EMOJI_CHEAT_SHEET_PREFERRED |
ANY_GITHUB_PREFERRED |
EMOJI_CHEAT_SHEET |
GITHUB |
| Modifier and Type | Field and Description |
|---|---|
boolean |
isEmojiCheatSheet |
boolean |
isGitHub |
| Modifier and Type | Method and Description |
|---|---|
String |
getPreferred(String emojiCheatSheet,
String gitHub) |
static EmojiShortcutType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmojiShortcutType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmojiShortcutType EMOJI_CHEAT_SHEET
public static final EmojiShortcutType GITHUB
public static final EmojiShortcutType ANY_EMOJI_CHEAT_SHEET_PREFERRED
public static final EmojiShortcutType ANY_GITHUB_PREFERRED
public final boolean isEmojiCheatSheet
public final boolean isGitHub
public static EmojiShortcutType[] values()
for (EmojiShortcutType c : EmojiShortcutType.values()) System.out.println(c);
public static EmojiShortcutType 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.