public enum TriggerZoneType extends java.lang.Enum<TriggerZoneType> implements IZITravelEnumeration
| Enum Constant and Description |
|---|
Circle
Circle shaped trigger zone.
|
Polygon
Polygon shaped trigger zone.
|
| Modifier and Type | Method and Description |
|---|---|
static TriggerZoneType |
fromValue(java.lang.String value) |
java.lang.String |
toString() |
static TriggerZoneType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TriggerZoneType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TriggerZoneType Polygon
public static final TriggerZoneType Circle
public static TriggerZoneType[] values()
for (TriggerZoneType c : TriggerZoneType.values()) System.out.println(c);
public static TriggerZoneType 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 java.lang.String toString()
toString in class java.lang.Enum<TriggerZoneType>public static TriggerZoneType fromValue(java.lang.String value)