All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.updater.trip.UpdateIncrementality Maven / Gradle / Ivy

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