public enum TrackPointType extends Enum<TrackPointType>
| Enum Constant and Description |
|---|
AUTOMATIC_ESTIMATED
An automatic, estimated track point.
|
AUTOMATIC_PREDICTED
An automatic, predicted track point.
|
MANUAL_ESTIMATED
A manual, estimated track point.
|
MANUAL_PREDICTED
A manual, predicted track point.
|
MEASURED
A measured track point.
|
| Modifier and Type | Method and Description |
|---|---|
static TrackPointType |
fromString(String value) |
String |
toString() |
static TrackPointType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrackPointType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackPointType MEASURED
A detection marked as a track point, with no additional adjustments, automatic/machine filtering, or estimation processing (i.e."raw" detection information, or input to the tracker).
public static final TrackPointType MANUAL_ESTIMATED
Position is approximated by an operator/analyst, based on one or more measurements and his/her analytical judgment (example: "snap to road").
public static final TrackPointType MANUAL_PREDICTED
A point provided by operator/analyst that is based on prior track history, but is not associated with a direct measurement.
public static final TrackPointType AUTOMATIC_ESTIMATED
A point provided by automatic tracker, based on one or more measurements and automatic adjustments (example: "snap to road").
public static final TrackPointType AUTOMATIC_PREDICTED
A point provided by automatic tracker, based on prior track history, but is not associated with a direct measurement.
public static TrackPointType[] values()
for (TrackPointType c : TrackPointType.values()) System.out.println(c);
public static TrackPointType 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 TrackPointType fromString(String value)
public String toString()
toString in class Enum<TrackPointType>Copyright © 2013–2020. All rights reserved.