public static enum ChatFilterBuilder.ChatFilter extends Enum<ChatFilterBuilder.ChatFilter>
Enum Constant and Description |
---|
DIRECT
1:1 방
|
MULTI
그룹 채팅방
|
OPEN
카카오톡 OPEN 채팅방
|
REGULAR
카카오톡 일반 채팅방
|
Modifier and Type | Method and Description |
---|---|
static ChatFilterBuilder.ChatFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChatFilterBuilder.ChatFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChatFilterBuilder.ChatFilter DIRECT
public static final ChatFilterBuilder.ChatFilter MULTI
public static final ChatFilterBuilder.ChatFilter OPEN
public static final ChatFilterBuilder.ChatFilter REGULAR
public static ChatFilterBuilder.ChatFilter 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 static ChatFilterBuilder.ChatFilter[] values()
for (ChatFilterBuilder.ChatFilter c : ChatFilterBuilder.ChatFilter.values()) System.out.println(c);