public enum TCRecipient extends Enum<TCRecipient>
| Enum Constant and Description |
|---|
GLOBAL |
CHANNEL |
PRIVATE |
TC_INFO
Special type of the recipient - sent by
TCMinaServer and consumed by TCMinaClient. |
TC_REQUEST
Special type of the recipient - sent by
TCMinaClient and consumed by TCMinaServer. |
TEAM |
| Modifier and Type | Method and Description |
|---|---|
static TCRecipient |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TCRecipient[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TCRecipient GLOBAL
public static final TCRecipient TEAM
public static final TCRecipient CHANNEL
public static final TCRecipient PRIVATE
public static final TCRecipient TC_INFO
TCMinaServer and consumed by TCMinaClient.
These messages are usually consumed by TCMinaClient but some of them are even propagated to the UT2004Bot.public static final TCRecipient TC_REQUEST
TCMinaClient and consumed by TCMinaServer.
These messages are never received by TCMinaClient and thus they are NEVER further propagated to the UT2004Bot.public static TCRecipient[] values()
for (TCRecipient c : TCRecipient.values()) System.out.println(c);
public static TCRecipient 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 © 2019 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All rights reserved.