public enum ReceiveType extends java.lang.Enum<ReceiveType>
Enum Constant and Description |
---|
Christmas |
Command |
Custom |
Evolution |
Fossil |
PokeBall |
SelectPokemon |
Starter |
Trade |
Modifier and Type | Method and Description |
---|---|
static ReceiveType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReceiveType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReceiveType Christmas
public static final ReceiveType Command
public static final ReceiveType Evolution
public static final ReceiveType Fossil
public static final ReceiveType PokeBall
public static final ReceiveType Starter
public static final ReceiveType SelectPokemon
public static final ReceiveType Trade
public static final ReceiveType Custom
public static ReceiveType[] values()
for (ReceiveType c : ReceiveType.values()) System.out.println(c);
public static ReceiveType 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