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