public enum TeamworkConversationIdentityType extends java.lang.Enum<TeamworkConversationIdentityType>
| Enum Constant and Description |
|---|
CHANNEL
channel
|
CHAT
chat
|
TEAM
team
|
UNEXPECTED_VALUE
For TeamworkConversationIdentityType values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static TeamworkConversationIdentityType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TeamworkConversationIdentityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TeamworkConversationIdentityType TEAM
public static final TeamworkConversationIdentityType CHANNEL
public static final TeamworkConversationIdentityType CHAT
public static final TeamworkConversationIdentityType UNKNOWN_FUTURE_VALUE
public static final TeamworkConversationIdentityType UNEXPECTED_VALUE
public static TeamworkConversationIdentityType[] values()
for (TeamworkConversationIdentityType c : TeamworkConversationIdentityType.values()) System.out.println(c);
public static TeamworkConversationIdentityType 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