public static enum ChatMember.Status extends java.lang.Enum<ChatMember.Status>
| Enum Constant and Description |
|---|
administrator |
creator |
kicked |
left |
member |
restricted |
| Modifier and Type | Method and Description |
|---|---|
static ChatMember.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChatMember.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChatMember.Status creator
public static final ChatMember.Status administrator
public static final ChatMember.Status member
public static final ChatMember.Status restricted
public static final ChatMember.Status left
public static final ChatMember.Status kicked
public static ChatMember.Status[] values()
for (ChatMember.Status c : ChatMember.Status.values()) System.out.println(c);
public static ChatMember.Status 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