Page Summary
-
TrafficData.SpeedReadingInterval.SpeedTypeis an annotation interface used to classify the speed on a path. -
It defines four speed classifications:
NORMAL,NO_DATA,SLOW, andTRAFFIC_JAM, represented by integer constants. -
This annotation inherits methods from
java.lang.annotation.Annotation, such asannotationType(),equals(),hashCode(), andtoString().
public static abstract @interface TrafficData.SpeedReadingInterval.SpeedType implements
Annotation
Constant describing the classification of the speed on this path.
Constant Summary
| int | NORMAL | |
| int | NO_DATA | |
| int | SLOW | |
| int | TRAFFIC_JAM |
Inherited Method Summary
Constants
public static final int NORMAL
Constant Value: 1
public static final int NO_DATA
Constant Value: 0
public static final int SLOW
Constant Value: 2
public static final int TRAFFIC_JAM
Constant Value: 3