-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e37b36d
commit eff5b60
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
src/main/java/com/conveyal/datatools/manager/jobs/MergeFeedsType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
package com.conveyal.datatools.manager.jobs; | ||
|
||
/** | ||
* This enum contains the types of merge feeds that {@link MergeFeedsJob} can currently perform. | ||
*/ | ||
public enum MergeFeedsType { | ||
/** Merge feed versions that represent different transit agencies (usually operating in the same geographic region */ | ||
REGIONAL, | ||
/** | ||
* Merge two feed versions from the same transit agency that contain service for different time periods (usually to | ||
* combine two overlapping time periods, for example, the current schedules and the future schedules). | ||
*/ | ||
SERVICE_PERIOD | ||
} |