public enum MessageEffectType extends java.lang.Enum<MessageEffectType>
| Enum Constant and Description |
|---|
ACCEPTS |
PROPOSES |
REJECTS |
RETRACTS |
| Modifier and Type | Method and Description |
|---|---|
static MessageEffectType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageEffectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageEffectType PROPOSES
public static final MessageEffectType ACCEPTS
public static final MessageEffectType REJECTS
public static final MessageEffectType RETRACTS
public static MessageEffectType[] values()
for (MessageEffectType c : MessageEffectType.values()) System.out.println(c);
public static MessageEffectType 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 nullCopyright © 2018. All Rights Reserved.