public enum DeliveryType extends java.lang.Enum<DeliveryType>
Enum Constant and Description |
---|
Aimed |
Self |
TargetActor |
TargetLocation |
Touch |
Modifier and Type | Method and Description |
---|---|
static DeliveryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeliveryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliveryType Self
public static final DeliveryType Touch
public static final DeliveryType Aimed
public static final DeliveryType TargetActor
public static final DeliveryType TargetLocation
public static DeliveryType[] values()
for (DeliveryType c : DeliveryType.values()) System.out.println(c);
public static DeliveryType 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