public static enum Emojicon.Type extends java.lang.Enum<Emojicon.Type>
| Enum Constant and Description |
|---|
BIG_EXPRESSION
大表情,点击之后直接发送
|
NORMAL
普通表情,可以一次输入多个到edittext
|
| Modifier and Type | Method and Description |
|---|---|
static Emojicon.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Emojicon.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Emojicon.Type NORMAL
public static final Emojicon.Type BIG_EXPRESSION
public static Emojicon.Type[] values()
for (Emojicon.Type c : Emojicon.Type.values()) System.out.println(c);
public static Emojicon.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null