public enum RealTimeState extends Enum<RealTimeState>
Enum Constant and Description |
---|
ADDED
The trip has been added using a real-time update, i.e.
|
CANCELED
The trip has been canceled by a real-time update.
|
MODIFIED
The trip information has been updated and resulted in a different trip pattern compared to
the trip pattern of the scheduled trip.
|
SCHEDULED
The trip information comes from the GTFS feed, i.e.
|
UPDATED
The trip information has been updated, but the trip pattern stayed the same as the trip
pattern of the scheduled trip.
|
Modifier and Type | Method and Description |
---|---|
static RealTimeState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RealTimeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RealTimeState SCHEDULED
public static final RealTimeState UPDATED
public static final RealTimeState CANCELED
public static final RealTimeState ADDED
public static final RealTimeState MODIFIED
public static RealTimeState[] values()
for (RealTimeState c : RealTimeState.values()) System.out.println(c);
public static RealTimeState 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 nullCopyright © 2019. All rights reserved.