public static enum Tracklet.TrackingStatus extends Enum<Tracklet.TrackingStatus>
Enum Constant and Description |
---|
LOST
The object gets lost now.
|
NEW
The object is newly added.
|
REMOVED
The object is removed.
|
TRACKED
The object is being tracked.
|
Modifier and Type | Field and Description |
---|---|
int |
value |
Modifier and Type | Method and Description |
---|---|
Tracklet.TrackingStatus |
intern() |
String |
toString() |
static Tracklet.TrackingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tracklet.TrackingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tracklet.TrackingStatus NEW
public static final Tracklet.TrackingStatus TRACKED
public static final Tracklet.TrackingStatus LOST
public static final Tracklet.TrackingStatus REMOVED
public static Tracklet.TrackingStatus[] values()
for (Tracklet.TrackingStatus c : Tracklet.TrackingStatus.values()) System.out.println(c);
public static Tracklet.TrackingStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic Tracklet.TrackingStatus intern()
public String toString()
toString
in class Enum<Tracklet.TrackingStatus>
Copyright © 2024. All rights reserved.