public static enum EmojiTrie.Matches extends Enum<EmojiTrie.Matches>
| Enum Constant and Description |
|---|
EXACTLY |
IMPOSSIBLE |
POSSIBLY |
| Modifier and Type | Method and Description |
|---|---|
boolean |
exactMatch() |
boolean |
impossibleMatch() |
static EmojiTrie.Matches |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmojiTrie.Matches[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmojiTrie.Matches EXACTLY
public static final EmojiTrie.Matches POSSIBLY
public static final EmojiTrie.Matches IMPOSSIBLE
public static EmojiTrie.Matches[] values()
for (EmojiTrie.Matches c : EmojiTrie.Matches.values()) System.out.println(c);
public static EmojiTrie.Matches 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 boolean exactMatch()
public boolean impossibleMatch()
Copyright © 2016. All rights reserved.