Uses of Class
org.onebusaway.gtfs.csv.exceptions.CsvEntityException

Packages that use CsvEntityException
org.onebusaway.gtfs.csv.exceptions   
org.onebusaway.gtfs.csv.schema   
org.onebusaway.gtfs.impl   
org.onebusaway.gtfs.impl.calendar   
org.onebusaway.gtfs.serialization   
org.onebusaway.gtfs.serialization.mappings   
 

Uses of CsvEntityException in org.onebusaway.gtfs.csv.exceptions
 

Subclasses of CsvEntityException in org.onebusaway.gtfs.csv.exceptions
 class CsvEntityIOException
          Indicates an error was thrown when reading / writing CSV.
 class EntityInstantiationException
          Indicates an error when attempting to instantiate an instance of the specified entity type
 class IntrospectionException
          Indicates that introspection failed for the specified entity type.
 class MethodInvocationException
          Indicates an error when attempting to invoke the specified method on an instance of the specified entity class
 class MissingRequiredEntityException
          Indicates that the specified entity type is marked as required, but no input file or source was found for that entity.
 class MissingRequiredFieldException
          Indiciates that the specified field for the specified entity type is marked as required, but that no value was included in either the CSV source (just an empty value) or the entity object (null value).
 class NoCsvFieldsAnnotationException
          Indicates that an entity type was passed to AnnotationDrivenEntitySchemaFactory for introspection and the specified entity type did not have a CsvFields class annotation
 class NoDefaultConverterException
          Error indicating that no default converter could be found for converting CSV string data into the specified type for the target entity's specified field.
 class NoSuchPropertyException
          Indicates that the specified entity type does not have a property with the given name, or that there was an error examining the property.
 

Uses of CsvEntityException in org.onebusaway.gtfs.csv.schema
 

Subclasses of CsvEntityException in org.onebusaway.gtfs.csv.schema
static class DateFieldMappingFactory.DateFieldMappingException
           
 

Methods in org.onebusaway.gtfs.csv.schema that throw CsvEntityException
 void FieldMapping.translateFromCSVToObject(CsvEntityContext context, java.util.Map<java.lang.String,java.lang.Object> csvValues, BeanWrapper object)
           
 void FieldMapping.translateFromObjectToCSV(CsvEntityContext context, BeanWrapper object, java.util.Map<java.lang.String,java.lang.Object> csvValues)
           
 

Uses of CsvEntityException in org.onebusaway.gtfs.impl
 

Subclasses of CsvEntityException in org.onebusaway.gtfs.impl
 class MultipleCalendarsForServiceIdException
          Indicates that multiple ServiceCalendar entities, as loaded from calendars.txt, were found with the same ServiceCalendar.getServiceId() value, a violation of the GTFS spec.
 

Uses of CsvEntityException in org.onebusaway.gtfs.impl.calendar
 

Subclasses of CsvEntityException in org.onebusaway.gtfs.impl.calendar
 class UnknownAgencyTimezoneException
          Indicates that the Agency.getTimezone() string does not evaluate to a valid TimeZone.
 

Uses of CsvEntityException in org.onebusaway.gtfs.serialization
 

Subclasses of CsvEntityException in org.onebusaway.gtfs.serialization
 class DuplicateEntityException
          Indicates that two entities with the same id were found in a GTFS feed as it was being read.
 class EntityReferenceNotFoundException
          Indicates that a GTFS entity has a reference to another entity that has not been seen before in the feed and that we don't know how to specify a default agency id for that entity as result.
 class NoDefaultAgencyIdException
          Indicates that no default agency id (see GtfsReaderContext.getDefaultAgencyId() was specified for a particular feed.
 

Uses of CsvEntityException in org.onebusaway.gtfs.serialization.mappings
 

Subclasses of CsvEntityException in org.onebusaway.gtfs.serialization.mappings
 class AgencyNotFoundForRouteException
          Error indicating that there was a problem finding the appropriate Agency instance to set in a call to Route.setAgency(Agency).
 class InvalidStopTimeException
          Indicates the an "arrival_time" or "departure_time" value for in the "stop_times.txt" csv file could not be parsed.
 class RouteNameException
          The GTFS spec declares that at least one of Route.getShortName() or Route.getLongName() must be specified, if not both.
 



Copyright © 2010 OneBusAway. All Rights Reserved.