public enum EChatActionResult extends java.lang.Enum<EChatActionResult>
| Enum Constant and Description |
|---|
ChatDoesntExist |
ChatFull |
Error |
NotAllowedOnBannedUser |
NotAllowedOnChatOwner |
NotAllowedOnClanMember |
NotAllowedOnSelf |
NotPermitted |
Success |
VoiceSlotsFull |
| Modifier and Type | Method and Description |
|---|---|
int |
code() |
static EChatActionResult |
from(int code) |
static EChatActionResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EChatActionResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EChatActionResult Success
public static final EChatActionResult Error
public static final EChatActionResult NotPermitted
public static final EChatActionResult NotAllowedOnClanMember
public static final EChatActionResult NotAllowedOnBannedUser
public static final EChatActionResult NotAllowedOnChatOwner
public static final EChatActionResult NotAllowedOnSelf
public static final EChatActionResult ChatDoesntExist
public static final EChatActionResult ChatFull
public static final EChatActionResult VoiceSlotsFull
public static EChatActionResult[] values()
for (EChatActionResult c : EChatActionResult.values()) System.out.println(c);
public static EChatActionResult 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 nullpublic int code()
public static EChatActionResult from(int code)