Uses of Class
org.goplanit.gtfs.enums.GtfsKeyType
-
Packages that use GtfsKeyType Package Description org.goplanit.gtfs.entity org.goplanit.gtfs.enums org.goplanit.gtfs.reader org.goplanit.gtfs.util -
-
Uses of GtfsKeyType in org.goplanit.gtfs.entity
Fields in org.goplanit.gtfs.entity with type parameters of type GtfsKeyType Modifier and Type Field Description static EnumSet<GtfsKeyType>GtfsAgency. SUPPORTED_KEYSSupported keys for a GTFS agency instancestatic EnumSet<GtfsKeyType>GtfsAttribution. SUPPORTED_KEYSSupported keys for a GTFS feed attribution instancestatic EnumSet<GtfsKeyType>GtfsCalendar. SUPPORTED_KEYSSupported keys for a GTFS calendar instancestatic EnumSet<GtfsKeyType>GtfsCalendarDate. SUPPORTED_KEYSSupported keys for a GTFS calendar date instancestatic EnumSet<GtfsKeyType>GtfsFareAttribute. SUPPORTED_KEYSSupported keys for a GTFS fare attribute instancestatic EnumSet<GtfsKeyType>GtfsFareRule. SUPPORTED_KEYSSupported keys for a GTFS fare rule instancestatic EnumSet<GtfsKeyType>GtfsFeedInfo. SUPPORTED_KEYSSupported keys for a GTFS feed information instancestatic EnumSet<GtfsKeyType>GtfsFrequency. SUPPORTED_KEYSSupported keys for a GTFS frequencies instancestatic EnumSet<GtfsKeyType>GtfsLevel. SUPPORTED_KEYSSupported keys for a GTFS levels instancestatic EnumSet<GtfsKeyType>GtfsPathway. SUPPORTED_KEYSSupported keys for a GTFS shape instancestatic EnumSet<GtfsKeyType>GtfsRoute. SUPPORTED_KEYSSupported keys for a GTFS route instancestatic EnumSet<GtfsKeyType>GtfsShape. SUPPORTED_KEYSSupported keys for a GTFS shape instancestatic EnumSet<GtfsKeyType>GtfsStop. SUPPORTED_KEYSSupported keys for a GTFS stop instancestatic EnumSet<GtfsKeyType>GtfsStopTime. SUPPORTED_KEYSSupported keys for a GTFS stop time instancestatic EnumSet<GtfsKeyType>GtfsTransfer. SUPPORTED_KEYSSupported keys for a GTFS transfer instancestatic EnumSet<GtfsKeyType>GtfsTranslation. SUPPORTED_KEYSSupported keys for a GTFS translation instancestatic EnumSet<GtfsKeyType>GtfsTrip. SUPPORTED_KEYSSupported keys for a GTFS trip instanceMethods in org.goplanit.gtfs.entity that return GtfsKeyType Modifier and Type Method Description static GtfsKeyTypeGtfsCalendar. asGtfsKeyType(DayOfWeek dayOfWeek)Convert Java DayOfWeek to GTFSKeyType (if possible)Methods in org.goplanit.gtfs.entity that return types with arguments of type GtfsKeyType Modifier and Type Method Description EnumSet<GtfsKeyType>GtfsAgency. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsAttribution. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsCalendar. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsCalendarDate. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsFareAttribute. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsFareRule. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsFeedInfo. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsFrequency. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsLevel. getSupportedKeys()All supported keys for this GTFS objectabstract EnumSet<GtfsKeyType>GtfsObject. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsPathway. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsRoute. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsShape. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsStop. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsStopTime. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsTransfer. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsTranslation. getSupportedKeys()All supported keys for this GTFS objectEnumSet<GtfsKeyType>GtfsTrip. getSupportedKeys()All supported keys for this GTFS objectMethods in org.goplanit.gtfs.entity with parameters of type GtfsKeyType Modifier and Type Method Description static DayOfWeekGtfsCalendar. asDayOfWeek(GtfsKeyType gtfsKeyTypeWeekDay)Convert GtfsKeyType to a Java DayOfWeek (if possible)booleanGtfsObject. containsKey(GtfsKeyType key)StringGtfsObject. get(GtfsKeyType key)booleanGtfsCalendar. isActiveOn(GtfsKeyType gtfsKeyTypeDayOfWeek)StringGtfsObject. put(GtfsKeyType key, String value) -
Uses of GtfsKeyType in org.goplanit.gtfs.enums
Methods in org.goplanit.gtfs.enums that return GtfsKeyType Modifier and Type Method Description static GtfsKeyTypeGtfsKeyType. valueOf(String name)Returns the enum constant of this type with the specified name.static GtfsKeyType[]GtfsKeyType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.goplanit.gtfs.enums that return types with arguments of type GtfsKeyType Modifier and Type Method Description static Optional<GtfsKeyType>GtfsKeyType. fromValue(String value)Construct enum from given value (ignoring case)Method parameters in org.goplanit.gtfs.enums with type arguments of type GtfsKeyType Modifier and Type Method Description static booleanGtfsKeyType. valueIn(EnumSet<GtfsKeyType> supportedKeys, String value)Verify if value is present in provided enumset's values (ignoring case) -
Uses of GtfsKeyType in org.goplanit.gtfs.reader
Methods in org.goplanit.gtfs.reader that return types with arguments of type GtfsKeyType Modifier and Type Method Description Set<GtfsKeyType>GtfsFileReaderSettings. getExcludedColumns()the excluded columns (unmodifiable)Methods in org.goplanit.gtfs.reader with parameters of type GtfsKeyType Modifier and Type Method Description voidGtfsFileReaderSettings. excludeColumns(GtfsKeyType... columnsToExclude)Exclude one or more columns from in memory object to for example reduce the memory footprintbooleanGtfsFileReaderSettings. isExcludedColumn(GtfsKeyType column)Verify if a column is excludedMethod parameters in org.goplanit.gtfs.reader with type arguments of type GtfsKeyType Modifier and Type Method Description voidGtfsFileReaderSettings. excludeColumns(Iterator<GtfsKeyType> columnsToExcludeIter)Exclude one or more columns from in memory object to for example reduce the memory footprint -
Uses of GtfsKeyType in org.goplanit.gtfs.util
Methods in org.goplanit.gtfs.util that return types with arguments of type GtfsKeyType Modifier and Type Method Description static EnumSet<GtfsKeyType>GtfsUtils. getSupportedKeys(GtfsObjectType objectType)Collect the supported keys via reflection where it is assumed the object type's class has a default constructor.
-