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