
org.opentripplanner.updater.trip.UpdateIncrementality Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
The newest version!
package org.opentripplanner.updater.trip;
/**
* Describes the incrementality of a collection of realtime updates and how they are related to previous
* ones.
*/
public enum UpdateIncrementality {
/**
* The update contains all available realtime information for all trips in a given feed. The
* previously stored updates must be deleted and replaced with the information from this one.
*/
FULL_DATASET,
/**
* The update contains only information for a subset of all trips. If there is information stored
* from a previous realtime update it must be kept in order to have a complete picture of all
* trips.
*/
DIFFERENTIAL,
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy