public static enum SummonResponse.ResponseType extends java.lang.Enum<SummonResponse.ResponseType>
Enum Constant and Description |
---|
INVALID
Implies that this seems to be using the summon, but not in a correct
manner
|
SILENT
This indicates that there is no standard response in this response
(i.e.
|
VALID
Implies that this was a valid use of this summon
|
Modifier and Type | Method and Description |
---|---|
static SummonResponse.ResponseType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SummonResponse.ResponseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SummonResponse.ResponseType VALID
public static final SummonResponse.ResponseType INVALID
public static final SummonResponse.ResponseType SILENT
public static SummonResponse.ResponseType[] values()
for (SummonResponse.ResponseType c : SummonResponse.ResponseType.values()) System.out.println(c);
public static SummonResponse.ResponseType 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