- Type Parameters:
T
- The Class of object to be inserted: String for StringColumn, LocalDate for DateColumn, etc.
- Direct Known Subclasses:
- BooleanStringParser, DateStringParser, DateTimeStringParser, DoubleStringParser, StringStringParser, TimeStringParser
public abstract class StringParser<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.