Uses of Class
org.goplanit.gtfs.enums.GtfsFileType
-
Packages that use GtfsFileType Package Description org.goplanit.gtfs.enums org.goplanit.gtfs.scheme org.goplanit.gtfs.util -
-
Uses of GtfsFileType in org.goplanit.gtfs.enums
Methods in org.goplanit.gtfs.enums that return GtfsFileType Modifier and Type Method Description static GtfsFileType
GtfsFileType. valueOf(String name)
Returns the enum constant of this type with the specified name.static GtfsFileType[]
GtfsFileType. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of GtfsFileType in org.goplanit.gtfs.scheme
Methods in org.goplanit.gtfs.scheme that return GtfsFileType Modifier and Type Method Description GtfsFileType
GtfsFileScheme. getFileType()
Methods in org.goplanit.gtfs.scheme with parameters of type GtfsFileType Modifier and Type Method Description static GtfsFileScheme
GtfsFileSchemeFactory. create(GtfsFileType fileType)
Create the Gtfs file scheme based on the desired file typeConstructors in org.goplanit.gtfs.scheme with parameters of type GtfsFileType Constructor Description GtfsFileScheme(GtfsFileType fileType, GtfsObjectType objectType)
Constructor -
Uses of GtfsFileType in org.goplanit.gtfs.util
Methods in org.goplanit.gtfs.util that return GtfsFileType Modifier and Type Method Description GtfsFileType
GtfsFileConditions. getOtherFileDependency()
Collect the dependency on other file type's presence/or not.Methods in org.goplanit.gtfs.util with parameters of type GtfsFileType Modifier and Type Method Description static GtfsFileConditions
GtfsFileConditions. requiredInAbsenceOf(GtfsFileType otherFileType)
Create a file condition indicating it is required if another file is not presentstatic GtfsFileConditions
GtfsFileConditions. requiredInPresenceOf(GtfsFileType otherFileType)
Create a file condition indicating it is required if another file is presentConstructors in org.goplanit.gtfs.util with parameters of type GtfsFileType Constructor Description GtfsFileConditions(GtfsFileTypePresence presenceCondition, GtfsFileType requiredWhenAbsent, GtfsFileType requiredWhenPresent)
Constructor
-