- Type Parameters:
T
- The Class of object to be inserted: String for StringColumn, LocalDate for DateColumn, etc.
- Direct Known Subclasses:
- BooleanParser, DateParser, DateTimeParser, DoubleParser, FloatParser, IntParser, LongParser, ShortParser, StringParser, TimeParser
public abstract class AbstractParser<T>
extends Object
A parser for turning strings into objects that can be inserted into a column
It serves two purposes, to determine if a string can be parsed into the desired object type, and to actually
parse the string.
Implementations may take additional parameters such as a locale or DateTimeFormatter.