public enum TrackerType extends Enum<TrackerType>
| Enum Constant and Description |
|---|
AUTOMATIC_TRACKER
A track generated by an automatic tracker, based on measured data.
|
MANUAL_TRACKER
A track is approximated/estimated by a human operator/analyst.
|
SEMIAUTOMATIC_TRACKER
A track generated by an automatic tracker in combination with information
approximated/estimated by an operator/analyst.
|
| Modifier and Type | Method and Description |
|---|---|
static TrackerType |
fromString(String value) |
String |
toString() |
static TrackerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrackerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackerType MANUAL_TRACKER
public static final TrackerType AUTOMATIC_TRACKER
public static final TrackerType SEMIAUTOMATIC_TRACKER
public static TrackerType[] values()
for (TrackerType c : TrackerType.values()) System.out.println(c);
public static TrackerType 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 static TrackerType fromString(String value)
public String toString()
toString in class Enum<TrackerType>Copyright © 2013–2019. All rights reserved.