Uses of Class
com.github.jamesross03.pop_parser.utils.Record
Packages that use Record
Package
Description
A modular and reusable Java library containing functionality for parsing
population record CSVs.
Package containing a number of Objects and abstract classes used by
RecordParser
.Package containing implementations of the
Record
abstract class.-
Uses of Record in com.github.jamesross03.pop_parser
Classes in com.github.jamesross03.pop_parser with type parameters of type RecordModifier and TypeClassDescriptionclass
RecordParser<T extends Record>
Parser for CSV input files containing records, where typeT
is a subclass of theRecord
abstract class representing the type of records (e.g birth).Fields in com.github.jamesross03.pop_parser with type parameters of type RecordModifier and TypeFieldDescriptionstatic final Map
<Class<? extends Record>, Function<RecordFormat, RecordFactory<? extends Record>>> Constants.FACTORY_MAP
Map of <Record
subclass,RecordFactory
subclass instance> pairs used to get corresponding factory.static final Map
<Class<? extends Record>, Function<RecordFormat, RecordFactory<? extends Record>>> Constants.FACTORY_MAP
Map of <Record
subclass,RecordFactory
subclass instance> pairs used to get corresponding factory. -
Uses of Record in com.github.jamesross03.pop_parser.utils
Classes in com.github.jamesross03.pop_parser.utils with type parameters of type RecordModifier and TypeClassDescriptionclass
RecordFactory<T extends Record>
Abstract factory class for making objects ofRecord
subclassT
from a line of CSV input. -
Uses of Record in com.github.jamesross03.pop_parser.utils.records
Subclasses of Record in com.github.jamesross03.pop_parser.utils.records