- CellProcessor - Interface in org.supercsv.cellprocessor.ift
-
Defines the interface of all CellProcessors.
- CellProcessorAdaptor - Class in org.supercsv.cellprocessor
-
Abstract super class containing shared behaviour of all cell processors.
- CellProcessorAdaptor() - Constructor for class org.supercsv.cellprocessor.CellProcessorAdaptor
-
Constructor used by CellProcessors to indicate that they are the last processor in the chain.
- CellProcessorAdaptor(CellProcessor) - Constructor for class org.supercsv.cellprocessor.CellProcessorAdaptor
-
Constructor used by CellProcessors that require CellProcessor chaining (further processing is required).
- close() - Method in class org.supercsv.io.AbstractCsvReader
-
Closes the Tokenizer and its associated Reader.
- close() - Method in class org.supercsv.io.AbstractCsvWriter
-
Closes the underlying writer, flushing it first.
- close() - Method in class org.supercsv.io.AbstractTokenizer
-
Closes the underlying reader.
- Collector - Class in org.supercsv.cellprocessor
-
This processor collects each value it encounters and adds it to the supplied Collection.
- Collector(Collection<Object>) - Constructor for class org.supercsv.cellprocessor.Collector
-
Constructs a new Collector, which collects each value it encounters and adds it to the supplied
Collection.
- Collector(Collection<Object>, CellProcessor) - Constructor for class org.supercsv.cellprocessor.Collector
-
Constructs a new Collector, which collects each value it encounters, adds it to the supplied Collection,
then calls the next processor in the chain.
- ColumnQuoteMode - Class in org.supercsv.quote
-
When using ColumnQuoteMode surrounding quotes are only applied if required to escape special characters (per
RFC4180), or if a particular column should always be quoted.
- ColumnQuoteMode(int...) - Constructor for class org.supercsv.quote.ColumnQuoteMode
-
Constructs a new ColumnQuoteMode that quotes columns by column number.
- ColumnQuoteMode(boolean[]) - Constructor for class org.supercsv.quote.ColumnQuoteMode
-
Constructs a new ColumnQuoteMode that quotes columns if the element representing that column in the
supplied array is true.
- CommentMatcher - Interface in org.supercsv.comment
-
Interface for comment matchers.
- CommentMatches - Class in org.supercsv.comment
-
CommentMatcher that matches lines that match a specified regular expression.
- CommentMatches(String) - Constructor for class org.supercsv.comment.CommentMatches
-
Constructs a new CommentMatches comment matcher.
- CommentStartsWith - Class in org.supercsv.comment
-
CommentMatcher that matches lines that begin with a specified String.
- CommentStartsWith(String) - Constructor for class org.supercsv.comment.CommentStartsWith
-
Constructs a new CommentStartsWith comment matcher.
- configureBeanMapping(Class<?>, String[]) - Method in class org.supercsv.io.dozer.CsvDozerBeanReader
-
Configures the underlying DozerBeanMapper with the mappings required to map from the CSV file to the specified
class (this method may only be called before reading, as it's not possible to configure a DozerBeanMapper that
has already been initialized).
- configureBeanMapping(Class<?>, String[], Class<?>[]) - Method in class org.supercsv.io.dozer.CsvDozerBeanReader
-
Configures the underlying DozerBeanMapper with the mappings required to map from the CSV file to the specified
class (this method may only be called before reading, as it's not possible to configure a DozerBeanMapper that
has already been initialized).
- configureBeanMapping(Class<?>, String[]) - Method in class org.supercsv.io.dozer.CsvDozerBeanWriter
-
Configures the underlying DozerBeanMapper with the mappings required to map from the specified class to the CSV
file (this method may only be called before writing, as it's not possible to configure a DozerBeanMapper that has
already been initialized).
- configureBeanMapping(Class<?>, String[]) - Method in interface org.supercsv.io.dozer.ICsvDozerBeanReader
-
Configures the underlying DozerBeanMapper with the mappings required to map from the CSV file to the specified
class (this method may only be called before reading, as it's not possible to configure a DozerBeanMapper that
has already been initialized).
- configureBeanMapping(Class<?>, String[], Class<?>[]) - Method in interface org.supercsv.io.dozer.ICsvDozerBeanReader
-
Configures the underlying DozerBeanMapper with the mappings required to map from the CSV file to the specified
class (this method may only be called before reading, as it's not possible to configure a DozerBeanMapper that
has already been initialized).
- configureBeanMapping(Class<?>, String[]) - Method in interface org.supercsv.io.dozer.ICsvDozerBeanWriter
-
Configures the underlying DozerBeanMapper with the mappings required to map from the specified class to the CSV
file (this method may only be called before writing, as it's not possible to configure a DozerBeanMapper that has
already been initialized).
- containsKey(K1, K2) - Method in class org.supercsv.util.ThreeDHashMap
-
Existence check of a value (or null) mapped to the keys.
- containsKey(K1, K2, K3) - Method in class org.supercsv.util.ThreeDHashMap
-
Existence check of a value (or null) mapped to the keys.
- containsKey(K1, K2) - Method in class org.supercsv.util.TwoDHashMap
-
Existence check of a value (or null) mapped to the keys.
- ConvertNullTo - Class in org.supercsv.cellprocessor
-
This processor returns a specified default value if the input is null.
- ConvertNullTo(Object) - Constructor for class org.supercsv.cellprocessor.ConvertNullTo
-
Constructs a new ConvertNullTo processor, which returns a specified default value if the input is
null.
- ConvertNullTo(Object, CellProcessor) - Constructor for class org.supercsv.cellprocessor.ConvertNullTo
-
Constructs a new ConvertNullTo processor, which returns a specified default value if the input is
null.
- createProxy(Class<T>) - Static method in class org.supercsv.util.BeanInterfaceProxy
-
Creates a proxy object which implements a given bean interface.
- CsvBeanReader - Class in org.supercsv.io
-
CsvBeanReader reads a CSV file by instantiating a bean for every row and mapping each column to a field on the bean
(using the supplied name mapping).
- CsvBeanReader(Reader, CsvPreference) - Constructor for class org.supercsv.io.CsvBeanReader
-
Constructs a new CsvBeanReader with the supplied Reader and CSV preferences.
- CsvBeanReader(ITokenizer, CsvPreference) - Constructor for class org.supercsv.io.CsvBeanReader
-
Constructs a new CsvBeanReader with the supplied (custom) Tokenizer and CSV preferences.
- CsvBeanWriter - Class in org.supercsv.io
-
CsvBeanWriter writes a CSV file by mapping each field on the bean to a column in the CSV file (using the supplied
name mapping).
- CsvBeanWriter(Writer, CsvPreference) - Constructor for class org.supercsv.io.CsvBeanWriter
-
Constructs a new CsvBeanWriter with the supplied Writer and CSV preferences.
- CsvContext - Class in org.supercsv.util
-
This object represents the current context of a given CSV file being either read or written to.
- CsvContext(int, int, int) - Constructor for class org.supercsv.util.CsvContext
-
Constructs a new CsvContext.
- CsvContext(CsvContext) - Constructor for class org.supercsv.util.CsvContext
-
Constructs a new CsvContext that is a copy of the provided CsvContext.
- CsvDozerBeanData - Class in org.supercsv.io.dozer
-
Class used internally by CsvDozerBeanReader and CsvDozerBeanWriter for Dozer mapping between CSV columns and beans.
- CsvDozerBeanData() - Constructor for class org.supercsv.io.dozer.CsvDozerBeanData
-
- CsvDozerBeanReader - Class in org.supercsv.io.dozer
-
CsvDozerBeanReader is a powerful replacement for
CsvBeanReader
that uses Dozer to map from CSV to a bean.
- CsvDozerBeanReader(Reader, CsvPreference) - Constructor for class org.supercsv.io.dozer.CsvDozerBeanReader
-
Constructs a new CsvDozerBeanReader with the supplied Reader and CSV preferences and creates it's own
DozerBeanMapper.
- CsvDozerBeanReader(ITokenizer, CsvPreference) - Constructor for class org.supercsv.io.dozer.CsvDozerBeanReader
-
Constructs a new CsvDozerBeanReader with the supplied (custom) Tokenizer and CSV preferences and creates
it's own DozerBeanMapper.
- CsvDozerBeanReader(Reader, CsvPreference, DozerBeanMapper) - Constructor for class org.supercsv.io.dozer.CsvDozerBeanReader
-
Constructs a new CsvDozerBeanReader with the supplied Reader, CSV preferences and DozerBeanMapper.
- CsvDozerBeanReader(ITokenizer, CsvPreference, DozerBeanMapper) - Constructor for class org.supercsv.io.dozer.CsvDozerBeanReader
-
Constructs a new CsvDozerBeanReader with the supplied (custom) Tokenizer, CSV preferences and
DozerBeanMapper.
- CsvDozerBeanWriter - Class in org.supercsv.io.dozer
-
CsvDozerBeanWriter is a powerful replacement for
CsvBeanWriter
that uses Dozer to map from a bean to CSV.
- CsvDozerBeanWriter(Writer, CsvPreference) - Constructor for class org.supercsv.io.dozer.CsvDozerBeanWriter
-
Constructs a new CsvDozerBeanWriter with the supplied Writer and CSV preferences and and creates it's
own DozerBeanMapper.
- CsvDozerBeanWriter(Writer, CsvPreference, DozerBeanMapper) - Constructor for class org.supercsv.io.dozer.CsvDozerBeanWriter
-
Constructs a new CsvDozerBeanWriter with the supplied Writer, CSV preferences and DozerBeanMapper.
- CsvEncoder - Interface in org.supercsv.encoder
-
Defines the interface for all CSV encoders.
- CsvListReader - Class in org.supercsv.io
-
CsvListReader is a simple reader that reads a row from a CSV file into a List of Strings.
- CsvListReader(Reader, CsvPreference) - Constructor for class org.supercsv.io.CsvListReader
-
Constructs a new CsvListReader with the supplied Reader and CSV preferences.
- CsvListReader(ITokenizer, CsvPreference) - Constructor for class org.supercsv.io.CsvListReader
-
Constructs a new CsvListReader with the supplied (custom) Tokenizer and CSV preferences.
- CsvListWriter - Class in org.supercsv.io
-
CsvListWriter is a simple writer capable of writing arrays and Lists to a CSV file.
- CsvListWriter(Writer, CsvPreference) - Constructor for class org.supercsv.io.CsvListWriter
-
Constructs a new CsvListWriter with the supplied Writer and CSV preferences.
- CsvMapReader - Class in org.supercsv.io
-
CsvMapReader reads each CSV row into a Map with the column name as the map key, and the column value as the map
value.
- CsvMapReader(Reader, CsvPreference) - Constructor for class org.supercsv.io.CsvMapReader
-
Constructs a new CsvMapReader with the supplied Reader and CSV preferences.
- CsvMapReader(ITokenizer, CsvPreference) - Constructor for class org.supercsv.io.CsvMapReader
-
Constructs a new CsvMapReader with the supplied (custom) Tokenizer and CSV preferences.
- CsvMapWriter - Class in org.supercsv.io
-
CsvMapWriter writes Maps of Objects to a CSV file.
- CsvMapWriter(Writer, CsvPreference) - Constructor for class org.supercsv.io.CsvMapWriter
-
Constructs a new CsvMapWriter with the supplied Writer and CSV preferences.
- CsvMapWriter(Writer, CsvPreference, boolean) - Constructor for class org.supercsv.io.CsvMapWriter
-
Constructs a new CsvMapWriter with the supplied Writer, CSV preferences and option
to bufferize the writer.
- CsvPreference - Class in org.supercsv.prefs
-
Before reading or writing CSV files, you must supply the reader/writer with some preferences.
- CsvPreference.Builder - Class in org.supercsv.prefs
-
Builds immutable CsvPreference instances.
- CsvResultSetWriter - Class in org.supercsv.io
-
CsvResultSetWriter writes a CSV file by mapping each column of the ResultSet
to a column in CSV file using
the column names stored in ResultSetMetaData
- CsvResultSetWriter(Writer, CsvPreference) - Constructor for class org.supercsv.io.CsvResultSetWriter
-
Constructs a new CsvResultSetWriter
with the supplied Writer
and CSV preferences.
- encode(String, CsvContext, CsvPreference) - Method in interface org.supercsv.encoder.CsvEncoder
-
Encodes a String to be written to a CSV file.
- encode(String, CsvContext, CsvPreference) - Method in class org.supercsv.encoder.DefaultCsvEncoder
-
Encodes a String to be written to a CSV file.
- encode(String, CsvContext, CsvPreference) - Method in class org.supercsv.encoder.SelectiveCsvEncoder
-
Encodes a String to be written to a CSV file.
- Equals - Class in org.supercsv.cellprocessor.constraint
-
This constraint ensures that all input data is equal (to each other, or to a supplied constant value).
- Equals() - Constructor for class org.supercsv.cellprocessor.constraint.Equals
-
Constructs a new Equals processor, which ensures all input data is equal.
- Equals(Object) - Constructor for class org.supercsv.cellprocessor.constraint.Equals
-
Constructs a new Equals processor, which ensures all input data is equal to the supplied constant value.
- Equals(CellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.Equals
-
Constructs a new Equals processor, which ensures all input data is equal, then calls the the next
processor in the chain.
- Equals(Object, CellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.Equals
-
Constructs a new Equals processor, which ensures all input data is equal to the supplied constant value,
then calls the the next processor in the chain.
- equals(Object) - Method in class org.supercsv.util.CsvContext
- EXCEL_NORTH_EUROPE_PREFERENCE - Static variable in class org.supercsv.prefs.CsvPreference
-
Ready to use configuration for north European excel CSV files (columns are separated by ";" instead of ",")
- EXCEL_PREFERENCE - Static variable in class org.supercsv.prefs.CsvPreference
-
Ready to use configuration for Windows Excel exported CSV files.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.Collector
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.DMinMax
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.Equals
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.ForbidSubStr
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.IsElementOf
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.IsIncludedIn
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.LMinMax
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.NotNull
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.RequireHashCode
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.RequireSubStr
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.Strlen
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.StrMinMax
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.StrNotNullOrEmpty
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.StrRegEx
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.Unique
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.constraint.UniqueHashCode
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.ConvertNullTo
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.FmtBool
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.FmtDate
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.FmtNumber
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.HashMapper
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in interface org.supercsv.cellprocessor.ift.CellProcessor
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.joda.AbstractJodaFormattingProcessor
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.joda.AbstractJodaParsingProcessor
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.joda.FmtDateTimeZone
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.joda.FmtDuration
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.joda.FmtInterval
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.joda.FmtPeriod
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.joda.ParseDateTimeZone
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.joda.ParseDuration
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.joda.ParseInterval
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.joda.ParsePeriod
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.ParseBigDecimal
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.ParseBool
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.ParseChar
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.ParseDate
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.ParseDouble
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.ParseEnum
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.ParseInt
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.ParseLong
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.StrReplace
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.time.AbstractTemporalAccessorFormattingProcessor
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.time.AbstractTemporalAccessorParsingProcessor
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.time.FmtDuration
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.time.FmtPeriod
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.time.FmtZoneId
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.time.ParseDuration
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.time.ParsePeriod
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.time.ParseZoneId
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.Token
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.Trim
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- execute(Object, CsvContext) - Method in class org.supercsv.cellprocessor.Truncate
-
This method is invoked by the framework when the processor needs to process data or check constraints.
- executeCellProcessors(List<Object>, List<?>, CellProcessor[], int, int) - Static method in class org.supercsv.util.Util
-
Processes each element in the source List (using the corresponding processor chain in the processors array) and
adds it to the destination List.
- executeProcessors(List<Object>, CellProcessor[]) - Method in class org.supercsv.io.AbstractCsvReader
-
Executes the supplied cell processors on the last row of CSV that was read and populates the supplied List of
processed columns.
- executeProcessors(CellProcessor...) - Method in class org.supercsv.io.CsvListReader
-
Executes the supplied cell processors on the last row of CSV that was read.
- executeProcessors(CellProcessor...) - Method in interface org.supercsv.io.ICsvListReader
-
Executes the supplied cell processors on the last row of CSV that was read.
- filterListToMap(Map<String, T>, String[], List<? extends T>) - Static method in class org.supercsv.util.Util
-
Converts a List to a Map using the elements of the nameMapping array as the keys of the Map.
- filterMapToList(Map<String, ?>, String[]) - Static method in class org.supercsv.util.Util
-
Returns a List of all of the values in the Map whose key matches an entry in the nameMapping array.
- filterMapToObjectArray(Map<String, ?>, String[]) - Static method in class org.supercsv.util.Util
-
Converts a Map to an array of objects, adding only those entries whose key is in the nameMapping array.
- findGetter(Object, String) - Static method in class org.supercsv.util.ReflectionUtils
-
Returns the getter method associated with the object's field.
- findSetter(Object, String, Class<?>) - Static method in class org.supercsv.util.ReflectionUtils
-
Returns the setter method associated with the object's field.
- flush() - Method in class org.supercsv.io.AbstractCsvWriter
-
Flushes the underlying writer.
- FmtBool - Class in org.supercsv.cellprocessor
-
Converts a Boolean into a formatted string.
- FmtBool(String, String) - Constructor for class org.supercsv.cellprocessor.FmtBool
-
Constructs a new FmtBool processor, which converts a Boolean into a formatted string.
- FmtBool(String, String, StringCellProcessor) - Constructor for class org.supercsv.cellprocessor.FmtBool
-
Constructs a new FmtBool processor, which converts a Boolean into a formatted string, then calls the
next processor in the chain.
- FmtDate - Class in org.supercsv.cellprocessor
-
- FmtDate(String) - Constructor for class org.supercsv.cellprocessor.FmtDate
-
Constructs a new FmtDate processor, which converts a date into a formatted string using
SimpleDateFormat.
- FmtDate(String, StringCellProcessor) - Constructor for class org.supercsv.cellprocessor.FmtDate
-
Constructs a new FmtDate processor, which converts a date into a formatted string using
SimpleDateFormat, then calls the next processor in the chain.
- FmtDateTime - Class in org.supercsv.cellprocessor.joda
-
Converts a Joda DateTime to a String.
- FmtDateTime() - Constructor for class org.supercsv.cellprocessor.joda.FmtDateTime
-
Constructs a new FmtDateTime processor, which formats a Joda
DateTime as a String.
- FmtDateTime(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtDateTime
-
Constructs a new FmtDateTime processor, which formats a Joda
DateTime as a String, then calls the next processor in the chain.
- FmtDateTime(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.joda.FmtDateTime
-
Constructs a new FmtDateTime processor, which formats a Joda
DateTime as a String using the supplied formatter.
- FmtDateTime(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtDateTime
-
Constructs a new FmtDateTime processor, which formats a Joda
DateTime as a String using the supplied formatter, then calls the next
processor in the chain.
- FmtDateTime(String) - Constructor for class org.supercsv.cellprocessor.joda.FmtDateTime
-
Constructs a new FmtDateTime processor, which formats a Joda
DateTime as a String using the supplied pattern and the default locale.
- FmtDateTime(String, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtDateTime
-
Constructs a new FmtDateTime processor, which formats a Joda
DateTime as a String using the supplied pattern and the default locale,
then calls the next processor in the chain.
- FmtDateTime(String, Locale) - Constructor for class org.supercsv.cellprocessor.joda.FmtDateTime
-
Constructs a new FmtDateTime processor, which formats a Joda
DateTime as a String using the supplied pattern and the locale.
- FmtDateTime(String, Locale, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtDateTime
-
Constructs a new FmtDateTime processor, which formats a Joda
DateTime as a String using the supplied pattern and the locale, then
calls the next processor in the chain.
- FmtDateTimeZone - Class in org.supercsv.cellprocessor.joda
-
Converts a Joda DateTimeZone to a String (the ID of the timezone, e.g.
- FmtDateTimeZone() - Constructor for class org.supercsv.cellprocessor.joda.FmtDateTimeZone
-
Constructs a new FmtDateTimeZone processor, which formats a Joda
DateTimeZone as a String.
- FmtDateTimeZone(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtDateTimeZone
-
Constructs a new FmtDateTimeZone processor, which formats a Joda
DateTimeZone as a String, then calls the next processor in the chain.
- FmtDuration - Class in org.supercsv.cellprocessor.joda
-
Converts a Joda Duration to a String in the ISO8601 duration format including
only seconds and milliseconds.
- FmtDuration() - Constructor for class org.supercsv.cellprocessor.joda.FmtDuration
-
Constructs a new FmtDuration processor, which formats a Joda
Duration as a String.
- FmtDuration(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtDuration
-
Constructs a new FmtDuration processor, which formats a Joda
Duration as a String, then calls the next processor in the chain.
- FmtDuration - Class in org.supercsv.cellprocessor.time
-
Converts a Duration to a String.
- FmtDuration() - Constructor for class org.supercsv.cellprocessor.time.FmtDuration
-
Constructs a new
FmtDuration processor, which formats a
Duration as a String in the ISO 8601 duration format,
in the same way as
Duration.toString()
- FmtDuration(CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.FmtDuration
-
Constructs a new FmtDuration processor, which formats a
Duration as a String, then calls the next processor in the chain.
- FmtInterval - Class in org.supercsv.cellprocessor.joda
-
Converts a Joda Interval to a String in ISO8601 interval format.
- FmtInterval() - Constructor for class org.supercsv.cellprocessor.joda.FmtInterval
-
Constructs a new FmtInterval processor, which formats a Joda
Interval as a String.
- FmtInterval(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtInterval
-
Constructs a new FmtInterval processor, which formats a Joda
Interval as a String, then calls the next processor in the chain.
- FmtLocalDate - Class in org.supercsv.cellprocessor.joda
-
Converts a Joda LocalDate to a String.
- FmtLocalDate() - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDate
-
Constructs a new FmtLocalDate processor, which formats a Joda
LocalDate as a String.
- FmtLocalDate(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDate
-
Constructs a new FmtLocalDate processor, which formats a Joda
LocalDate as a String, then calls the next processor in the chain.
- FmtLocalDate(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDate
-
Constructs a new FmtLocalDate processor, which formats a Joda
LocalDate as a String using the supplied formatter.
- FmtLocalDate(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDate
-
Constructs a new FmtLocalDate processor, which formats a Joda
LocalDate as a String using the supplied formatter, then calls the next
processor in the chain.
- FmtLocalDate(String) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDate
-
Constructs a new FmtLocalDate processor, which formats a Joda
LocalDate as a String using the supplied pattern and the default locale.
- FmtLocalDate(String, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDate
-
Constructs a new FmtLocalDate processor, which formats a Joda
LocalDate as a String using the supplied pattern and the default locale,
then calls the next processor in the chain.
- FmtLocalDate(String, Locale) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDate
-
Constructs a new FmtLocalDate processor, which formats a Joda
LocalDate as a String using the supplied pattern and the locale.
- FmtLocalDate(String, Locale, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDate
-
Constructs a new FmtLocalDate processor, which formats a Joda
LocalDate as a String using the supplied pattern and the locale, then
calls the next processor in the chain.
- FmtLocalDate - Class in org.supercsv.cellprocessor.time
-
Converts a LocalDate to a String.
- FmtLocalDate() - Constructor for class org.supercsv.cellprocessor.time.FmtLocalDate
-
Constructs a new
FmtLocalDate processor, which formats a
LocalDate as a String, with the same output as
LocalDate.toString()
- FmtLocalDate(CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.FmtLocalDate
-
Constructs a new FmtLocalDate processor, which formats a
LocalDate as a String, then calls the next processor in the chain.
- FmtLocalDate(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.time.FmtLocalDate
-
Constructs a new FmtLocalDate processor, which formats a
LocalDate as a String using the supplied formatter.
- FmtLocalDate(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.FmtLocalDate
-
Constructs a new FmtLocalDate processor, which formats a
LocalDate as a String using the supplied formatter, then calls the next
processor in the chain.
- FmtLocalDateTime - Class in org.supercsv.cellprocessor.joda
-
Converts a Joda LocalDateTime to a String.
- FmtLocalDateTime() - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDateTime
-
Constructs a new FmtLocalDateTime processor, which formats a
Joda LocalDateTime as a String.
- FmtLocalDateTime(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDateTime
-
Constructs a new FmtLocalDateTime processor, which formats a
Joda LocalDateTime as a String, then calls the next processor in the
chain.
- FmtLocalDateTime(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDateTime
-
Constructs a new FmtLocalDateTime processor, which formats a
Joda LocalDateTime as a String using the supplied formatter.
- FmtLocalDateTime(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDateTime
-
Constructs a new FmtLocalDateTime processor, which formats a
Joda LocalDateTime as a String using the supplied formatter, then calls
the next processor in the chain.
- FmtLocalDateTime(String) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDateTime
-
Constructs a new FmtLocalDateTime processor, which formats a
Joda LocalDateTime as a String using the supplied pattern and the default
locale.
- FmtLocalDateTime(String, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDateTime
-
Constructs a new FmtLocalDateTime processor, which formats a
Joda LocalDateTime as a String using the supplied pattern and the default
locale, then calls the next processor in the chain.
- FmtLocalDateTime(String, Locale) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDateTime
-
Constructs a new FmtLocalDateTime processor, which formats a
Joda LocalDateTime as a String using the supplied pattern and the locale.
- FmtLocalDateTime(String, Locale, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalDateTime
-
Constructs a new FmtLocalDateTime processor, which formats a
Joda LocalDateTime as a String using the supplied pattern and the locale,
then calls the next processor in the chain.
- FmtLocalDateTime - Class in org.supercsv.cellprocessor.time
-
Converts a LocalDateTime to a String.
- FmtLocalDateTime() - Constructor for class org.supercsv.cellprocessor.time.FmtLocalDateTime
-
Constructs a new FmtLocalDateTime processor, which formats a
LocalDateTime as a String.
- FmtLocalDateTime(CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.FmtLocalDateTime
-
Constructs a new FmtLocalDateTime processor, which formats a
LocalDateTime as a String, then calls the next processor in the
chain.
- FmtLocalDateTime(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.time.FmtLocalDateTime
-
Constructs a new FmtLocalDateTime processor, which formats a
LocalDateTime as a String using the supplied formatter.
- FmtLocalDateTime(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.FmtLocalDateTime
-
Constructs a new FmtLocalDateTime processor, which formats a
LocalDateTime as a String using the supplied formatter, then calls
the next processor in the chain.
- FmtLocalTime - Class in org.supercsv.cellprocessor.joda
-
Converts a Joda LocalTime to a String.
- FmtLocalTime() - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalTime
-
Constructs a new FmtLocalTime processor, which formats a Joda
LocalTime as a String.
- FmtLocalTime(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalTime
-
Constructs a new FmtLocalTime processor, which formats a Joda
LocalTime as a String, then calls the next processor in the chain.
- FmtLocalTime(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalTime
-
Constructs a new FmtLocalTime processor, which formats a Joda
LocalTime as a String using the supplied formatter.
- FmtLocalTime(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalTime
-
Constructs a new FmtLocalTime processor, which formats a Joda
LocalTime as a String using the supplied formatter, then calls the next
processor in the chain.
- FmtLocalTime(String) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalTime
-
Constructs a new FmtLocalTime processor, which formats a Joda
LocalTime as a String using the supplied pattern and the default locale.
- FmtLocalTime(String, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalTime
-
Constructs a new FmtLocalTime processor, which formats a Joda
LocalTime as a String using the supplied pattern and the default locale,
then calls the next processor in the chain.
- FmtLocalTime(String, Locale) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalTime
-
Constructs a new FmtLocalTime processor, which formats a Joda
LocalTime as a String using the supplied pattern and the locale.
- FmtLocalTime(String, Locale, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtLocalTime
-
Constructs a new FmtLocalTime processor, which formats a Joda
LocalTime as a String using the supplied pattern and the locale, then
calls the next processor in the chain.
- FmtLocalTime - Class in org.supercsv.cellprocessor.time
-
Converts a LocalTime to a String.
- FmtLocalTime() - Constructor for class org.supercsv.cellprocessor.time.FmtLocalTime
-
Constructs a new FmtLocalTime processor, which formats a
LocalTime as a String.
- FmtLocalTime(CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.FmtLocalTime
-
Constructs a new FmtLocalTime processor, which formats a
LocalTime as a String, then calls the next processor in the chain.
- FmtLocalTime(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.time.FmtLocalTime
-
Constructs a new FmtLocalTime processor, which formats a
LocalTime as a String using the supplied formatter.
- FmtLocalTime(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.FmtLocalTime
-
Constructs a new FmtLocalTime processor, which formats a
LocalTime as a String using the supplied formatter, then calls the next
processor in the chain.
- FmtNumber - Class in org.supercsv.cellprocessor
-
Converts a double into a formatted string using the
DecimalFormat
class and the default locale.
- FmtNumber(String) - Constructor for class org.supercsv.cellprocessor.FmtNumber
-
Constructs a new FmtNumber processor, which converts a double into a formatted string using the supplied
decimal format String.
- FmtNumber(String, StringCellProcessor) - Constructor for class org.supercsv.cellprocessor.FmtNumber
-
Constructs a new FmtNumber processor, which converts a double into a formatted string using the supplied
decimal format String, then calls the next processor in the chain.
- FmtNumber(DecimalFormat) - Constructor for class org.supercsv.cellprocessor.FmtNumber
-
Constructs a new FmtNumber processor, which converts a double into a formatted string using the supplied
decimal format.
- FmtNumber(DecimalFormat, StringCellProcessor) - Constructor for class org.supercsv.cellprocessor.FmtNumber
-
Constructs a new FmtNumber processor, which converts a double into a formatted string using the supplied
decimal format, then calls the next processor in the chain.
- FmtPeriod - Class in org.supercsv.cellprocessor.joda
-
Converts a Joda Period to a String.
- FmtPeriod() - Constructor for class org.supercsv.cellprocessor.joda.FmtPeriod
-
Constructs a new FmtPeriod processor, which formats a Joda
Period as a String.
- FmtPeriod(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtPeriod
-
Constructs a new FmtPeriod processor, which formats a Joda
Period as a String, then calls the next processor in the chain.
- FmtPeriod(PeriodFormatter) - Constructor for class org.supercsv.cellprocessor.joda.FmtPeriod
-
Constructs a new FmtPeriod processor, which formats a Joda
Period as a String using the supplied formatter.
- FmtPeriod(PeriodFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.FmtPeriod
-
Constructs a new FmtPeriod processor, which formats a Joda
Period as a String using the supplied formatter, then calls the next
processor in the chain.
- FmtPeriod - Class in org.supercsv.cellprocessor.time
-
Converts a Period to a String.
- FmtPeriod() - Constructor for class org.supercsv.cellprocessor.time.FmtPeriod
-
Constructs a new FmtPeriod processor, which formats a
Period as a String.
- FmtPeriod(CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.FmtPeriod
-
Constructs a new FmtPeriod processor, which formats a
Period as a String, then calls the next processor in the chain.
- FmtZonedDateTime - Class in org.supercsv.cellprocessor.time
-
Converts a ZonedDateTime to a String.
- FmtZonedDateTime() - Constructor for class org.supercsv.cellprocessor.time.FmtZonedDateTime
-
Constructs a new FmtZonedDateTime processor, which formats a
ZonedDateTime as a String.
- FmtZonedDateTime(CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.FmtZonedDateTime
-
Constructs a new FmtZonedDateTime processor, which formats a
ZonedDateTime as a String, then calls the next processor in the chain.
- FmtZonedDateTime(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.time.FmtZonedDateTime
-
Constructs a new FmtZonedDateTime processor, which formats a
ZonedDateTime as a String using the supplied formatter.
- FmtZonedDateTime(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.FmtZonedDateTime
-
Constructs a new FmtZonedDateTime processor, which formats a
ZonedDateTime as a String using the supplied formatter, then calls the next
processor in the chain.
- FmtZoneId - Class in org.supercsv.cellprocessor.time
-
Converts a ZoneId to a String.
- FmtZoneId() - Constructor for class org.supercsv.cellprocessor.time.FmtZoneId
-
Constructs a new FmtZoneId processor, which formats a
ZoneId as a String.
- FmtZoneId(CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.FmtZoneId
-
Constructs a new FmtZoneId processor, which formats a
ZoneId as a String, then calls the next processor in the chain.
- FmtZoneId(TextStyle, Locale) - Constructor for class org.supercsv.cellprocessor.time.FmtZoneId
-
Constructs a new FmtZoneId processor, which formats a
ZoneId as String, then calls the next processor in the chain.
- FmtZoneId(TextStyle, Locale, CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.FmtZoneId
-
Constructs a new FmtZoneId processor, which formats a
ZoneId as String, then calls the next processor in the chain.
- ForbidSubStr - Class in org.supercsv.cellprocessor.constraint
-
Converts the input to a String and ensures that it doesn't contain any of the supplied substrings.
- ForbidSubStr(List<String>) - Constructor for class org.supercsv.cellprocessor.constraint.ForbidSubStr
-
Constructs a new ForbidSubStr processor which ensures the input doesn't contain any of the supplied
substrings.
- ForbidSubStr(String...) - Constructor for class org.supercsv.cellprocessor.constraint.ForbidSubStr
-
Constructs a new ForbidSubStr processor which ensures the input doesn't contain any of the supplied
substrings.
- ForbidSubStr(List<String>, CellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.ForbidSubStr
-
Constructs a new ForbidSubStr processor which ensures the input doesn't contain any of the supplied
substrings, then calls the next processor in the chain.
- ForbidSubStr(String, CellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.ForbidSubStr
-
Constructs a new ForbidSubStr processor which ensures the input doesn't contain the supplied substring,
then calls the next processor in the chain.
- ForbidSubStr(String[], CellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.ForbidSubStr
-
Constructs a new ForbidSubStr processor which ensures the input doesn't contain any of the supplied
substrings, then calls the next processor in the chain.
- format(T, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.joda.AbstractJodaFormattingProcessor
-
Formats the Joda type as a String using a DateTimeFormatter.
- format(T, String, Locale) - Method in class org.supercsv.cellprocessor.joda.AbstractJodaFormattingProcessor
-
Formats the Joda type as a String using the supplied pattern and
(optional) locale.
- format(T) - Method in class org.supercsv.cellprocessor.joda.AbstractJodaFormattingProcessor
-
Formats the Joda type as a String using the default pattern and locale.
- format(DateTime, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.joda.FmtDateTime
-
Formats the Joda type as a String using a DateTimeFormatter.
- format(DateTime, String, Locale) - Method in class org.supercsv.cellprocessor.joda.FmtDateTime
-
Formats the Joda type as a String using the supplied pattern and
(optional) locale.
- format(DateTime) - Method in class org.supercsv.cellprocessor.joda.FmtDateTime
-
Formats the Joda type as a String using the default pattern and locale.
- format(LocalDate, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.joda.FmtLocalDate
-
Formats the Joda type as a String using a DateTimeFormatter.
- format(LocalDate, String, Locale) - Method in class org.supercsv.cellprocessor.joda.FmtLocalDate
-
Formats the Joda type as a String using the supplied pattern and
(optional) locale.
- format(LocalDate) - Method in class org.supercsv.cellprocessor.joda.FmtLocalDate
-
Formats the Joda type as a String using the default pattern and locale.
- format(LocalDateTime, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.joda.FmtLocalDateTime
-
Formats the Joda type as a String using a DateTimeFormatter.
- format(LocalDateTime, String, Locale) - Method in class org.supercsv.cellprocessor.joda.FmtLocalDateTime
-
Formats the Joda type as a String using the supplied pattern and
(optional) locale.
- format(LocalDateTime) - Method in class org.supercsv.cellprocessor.joda.FmtLocalDateTime
-
Formats the Joda type as a String using the default pattern and locale.
- format(LocalTime, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.joda.FmtLocalTime
-
Formats the Joda type as a String using a DateTimeFormatter.
- format(LocalTime, String, Locale) - Method in class org.supercsv.cellprocessor.joda.FmtLocalTime
-
Formats the Joda type as a String using the supplied pattern and
(optional) locale.
- format(LocalTime) - Method in class org.supercsv.cellprocessor.joda.FmtLocalTime
-
Formats the Joda type as a String using the default pattern and locale.
- parse(String) - Method in class org.supercsv.cellprocessor.joda.AbstractJodaParsingProcessor
-
Parses the String into the appropriate Joda type.
- parse(String, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.joda.AbstractJodaParsingProcessor
-
Parses the String into the appropriate Joda type, using the supplied
formatter.
- parse(String) - Method in class org.supercsv.cellprocessor.joda.ParseDateTime
-
Parses the String into the appropriate Joda type.
- parse(String, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.joda.ParseDateTime
-
Parses the String into the appropriate Joda type, using the supplied
formatter.
- parse(String) - Method in class org.supercsv.cellprocessor.joda.ParseLocalDate
-
Parses the String into the appropriate Joda type.
- parse(String, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.joda.ParseLocalDate
-
Parses the String into the appropriate Joda type, using the supplied
formatter.
- parse(String) - Method in class org.supercsv.cellprocessor.joda.ParseLocalDateTime
-
Parses the String into the appropriate Joda type.
- parse(String, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.joda.ParseLocalDateTime
-
Parses the String into the appropriate Joda type, using the supplied
formatter.
- parse(String) - Method in class org.supercsv.cellprocessor.joda.ParseLocalTime
-
Parses the String into the appropriate Joda type.
- parse(String, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.joda.ParseLocalTime
-
Parses the String into the appropriate Joda type, using the supplied
formatter.
- parse(String) - Method in class org.supercsv.cellprocessor.time.AbstractTemporalAccessorParsingProcessor
-
- parse(String, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.time.AbstractTemporalAccessorParsingProcessor
-
Parses the String into the appropriate
TemporalAccessor
type, using the supplied
formatter.
- parse(String) - Method in class org.supercsv.cellprocessor.time.ParseLocalDate
-
- parse(String, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.time.ParseLocalDate
-
Parses the String into the appropriate
TemporalAccessor
type, using the supplied
formatter.
- parse(String) - Method in class org.supercsv.cellprocessor.time.ParseLocalDateTime
-
- parse(String, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.time.ParseLocalDateTime
-
Parses the String into the appropriate
TemporalAccessor
type, using the supplied
formatter.
- parse(String) - Method in class org.supercsv.cellprocessor.time.ParseLocalTime
-
- parse(String, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.time.ParseLocalTime
-
Parses the String into the appropriate
TemporalAccessor
type, using the supplied
formatter.
- parse(String) - Method in class org.supercsv.cellprocessor.time.ParseZonedDateTime
-
- parse(String, DateTimeFormatter) - Method in class org.supercsv.cellprocessor.time.ParseZonedDateTime
-
Parses the String into the appropriate
TemporalAccessor
type, using the supplied
formatter.
- ParseBigDecimal - Class in org.supercsv.cellprocessor
-
Convert a String to a BigDecimal.
- ParseBigDecimal() - Constructor for class org.supercsv.cellprocessor.ParseBigDecimal
-
Constructs a new ParseBigDecimal processor, which converts a String to a BigDecimal.
- ParseBigDecimal(DecimalFormatSymbols) - Constructor for class org.supercsv.cellprocessor.ParseBigDecimal
-
Constructs a new ParseBigDecimal processor, which converts a String to a BigDecimal using the supplied
DecimalFormatSymbols object to convert any decimal separator to a "." before creating the BigDecimal.
- ParseBigDecimal(CellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseBigDecimal
-
Constructs a new ParseBigDecimal processor, which converts a String to a BigDecimal then calls the next
processor in the chain.
- ParseBigDecimal(DecimalFormatSymbols, CellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseBigDecimal
-
Constructs a new ParseBigDecimal processor, which converts a String to a BigDecimal using the supplied
DecimalFormatSymbols object to convert any decimal separator to a "." before creating the BigDecimal,
then calls the next processor in the chain.
- ParseBool - Class in org.supercsv.cellprocessor
-
Converts a String to a Boolean.
- ParseBool() - Constructor for class org.supercsv.cellprocessor.ParseBool
-
Constructs a new ParseBool processor, which converts a String to a Boolean using the default values
(ignoring case).
- ParseBool(boolean) - Constructor for class org.supercsv.cellprocessor.ParseBool
-
Constructs a new ParseBool processor, which converts a String to a Boolean using the default values
(ignoring case if desired).
- ParseBool(BoolCellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseBool
-
Constructs a new ParseBool processor, which converts a String to a Boolean using the default values
(ignoring case), then calls the next processor in the chain.
- ParseBool(boolean, BoolCellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseBool
-
Constructs a new ParseBool processor, which converts a String to a Boolean using the default values
(ignoring case if desired), then calls the next processor in the chain.
- ParseBool(String, String) - Constructor for class org.supercsv.cellprocessor.ParseBool
-
Constructs a new ParseBool processor, which converts a String to a Boolean using the supplied true/false
values (ignoring case).
- ParseBool(String, String, boolean) - Constructor for class org.supercsv.cellprocessor.ParseBool
-
Constructs a new ParseBool processor, which converts a String to a Boolean using the supplied true/false
values (ignoring case if desired).
- ParseBool(String[], String[]) - Constructor for class org.supercsv.cellprocessor.ParseBool
-
Constructs a new ParseBool processor, which converts a String to a Boolean using the supplied true/false
values (ignoring case).
- ParseBool(String[], String[], boolean) - Constructor for class org.supercsv.cellprocessor.ParseBool
-
Constructs a new ParseBool processor, which converts a String to a Boolean using the supplied true/false
values (ignoring case if desired).
- ParseBool(String, String, BoolCellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseBool
-
Constructs a new ParseBool processor, which converts a String to a Boolean using the supplied true/false
values (ignoring case), then calls the next processor in the chain.
- ParseBool(String, String, boolean, BoolCellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseBool
-
Constructs a new ParseBool processor, which converts a String to a Boolean using the supplied true/false
values (ignoring case if desired), then calls the next processor in the chain.
- ParseBool(String[], String[], BoolCellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseBool
-
Constructs a new ParseBool processor, which converts a String to a Boolean using the supplied true/false
values (ignoring case), then calls the next processor in the chain.
- ParseBool(String[], String[], boolean, BoolCellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseBool
-
Constructs a new ParseBool processor, which converts a String to a Boolean using the supplied true/false
values (ignoring case if desired), then calls the next processor in the chain.
- ParseChar - Class in org.supercsv.cellprocessor
-
Converts a String to a Character.
- ParseChar() - Constructor for class org.supercsv.cellprocessor.ParseChar
-
Constructs a new ParseChar processor, which converts a String to a Character.
- ParseChar(DoubleCellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseChar
-
Constructs a new ParseChar processor, which converts a String to a Character, then calls the next
processor in the chain.
- ParseDate - Class in org.supercsv.cellprocessor
-
- ParseDate(String) - Constructor for class org.supercsv.cellprocessor.ParseDate
-
Constructs a new ParseDate processor which converts a String to a Date using the supplied date format.
- ParseDate(String, boolean) - Constructor for class org.supercsv.cellprocessor.ParseDate
-
Constructs a new ParseDate processor which converts a String to a Date using the supplied date format.
- ParseDate(String, boolean, Locale) - Constructor for class org.supercsv.cellprocessor.ParseDate
-
Constructs a new ParseDate processor which converts a String to a Date using the supplied date format
and Locale.
- ParseDate(String, DateCellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseDate
-
Constructs a new ParseDate processor which converts a String to a Date using the supplied date format,
then calls the next processor in the chain.
- ParseDate(String, boolean, DateCellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseDate
-
Constructs a new ParseDate processor which converts a String to a Date using the supplied date format,
then calls the next processor in the chain.
- ParseDate(String, boolean, Locale, DateCellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseDate
-
Constructs a new ParseDate processor which converts a String to a Date using the supplied date format
and Locale, then calls the next processor in the chain.
- ParseDateTime - Class in org.supercsv.cellprocessor.joda
-
Converts a String to a Joda DateTime.
- ParseDateTime() - Constructor for class org.supercsv.cellprocessor.joda.ParseDateTime
-
Constructs a new ParseDateTime processor, which parses a String
as a Joda DateTime.
- ParseDateTime(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.ParseDateTime
-
Constructs a new ParseDateTime processor, which parses a String
as a Joda DateTime, then calls the next processor in the chain.
- ParseDateTime(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.joda.ParseDateTime
-
Constructs a new ParseDateTime processor, which parses a String
as a Joda DateTime using the supplied formatter.
- ParseDateTime(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.ParseDateTime
-
Constructs a new ParseDateTime processor, which parses a String
as a Joda DateTime using the supplied formatter, then calls the next
processor in the chain.
- ParseDateTimeZone - Class in org.supercsv.cellprocessor.joda
-
Converts a String (the ID of the timezone, e.g.
- ParseDateTimeZone() - Constructor for class org.supercsv.cellprocessor.joda.ParseDateTimeZone
-
Constructs a new ParseDateTimeZone processor, which parses a
String as a Joda DateTimeZone.
- ParseDateTimeZone(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.ParseDateTimeZone
-
Constructs a new ParseDateTimeZone processor, which parses a
String as a Joda DateTimeZone, then calls the next processor in the
chain.
- ParseDouble - Class in org.supercsv.cellprocessor
-
Converts a String to a Double.
- ParseDouble() - Constructor for class org.supercsv.cellprocessor.ParseDouble
-
Constructs a new ParseDouble processor, which converts a String to a Double.
- ParseDouble(DoubleCellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseDouble
-
Constructs a new ParseDouble processor, which converts a String to a Double, then calls the next
processor in the chain.
- ParseDuration - Class in org.supercsv.cellprocessor.joda
-
Converts a String to a Joda Duration.
- ParseDuration() - Constructor for class org.supercsv.cellprocessor.joda.ParseDuration
-
Constructs a new ParseDuration processor, which parses a String
as a Joda Duration.
- ParseDuration(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.ParseDuration
-
Constructs a new ParseDuration processor, which parses a String
as a Joda Duration, then calls the next processor in the chain.
- ParseDuration - Class in org.supercsv.cellprocessor.time
-
Converts a String to a Duration.
- ParseDuration() - Constructor for class org.supercsv.cellprocessor.time.ParseDuration
-
Constructs a new ParseDuration processor, which parses a String
as a Duration.
- ParseDuration(CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.ParseDuration
-
Constructs a new ParseDuration processor, which parses a String
as a Duration, then calls the next processor in the chain.
- ParseEnum - Class in org.supercsv.cellprocessor
-
Converts a String to an Enum.
- ParseEnum(Class<T>) - Constructor for class org.supercsv.cellprocessor.ParseEnum
-
Constructs a new ParseEnum processor, which converts a String to a Enum.
- ParseEnum(Class<T>, boolean) - Constructor for class org.supercsv.cellprocessor.ParseEnum
-
Constructs a new ParseEnum processor, which converts a String to a Enum, ignoring the case of the input
(or not) depending on the supplied flag.
- ParseEnum(Class<T>, CellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseEnum
-
Constructs a new ParseEnum processor, which converts a String to a Enum then calls the next processor in
the chain.
- ParseEnum(Class<T>, boolean, CellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseEnum
-
Constructs a new ParseEnum processor, which converts a String to a Enum, ignoring the case of the input
(or not) depending on the supplied flag, then calls the next processor in the chain.
- ParseInt - Class in org.supercsv.cellprocessor
-
Converts a String to an Integer.
- ParseInt() - Constructor for class org.supercsv.cellprocessor.ParseInt
-
Constructs a new ParseInt processor, which converts a String to an Integer.
- ParseInt(LongCellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseInt
-
Constructs a new ParseInt processor, which converts a String to an Integer, then calls the next
processor in the chain.
- ParseInterval - Class in org.supercsv.cellprocessor.joda
-
Converts a String (in ISO8601 interval format) to a Joda Interval.
- ParseInterval() - Constructor for class org.supercsv.cellprocessor.joda.ParseInterval
-
Constructs a new ParseInterval processor, which parses a String
as a Joda Interval.
- ParseInterval(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.ParseInterval
-
Constructs a new ParseInterval processor, which parses a String
as a Joda Interval, then calls the next processor in the chain.
- ParseLocalDate - Class in org.supercsv.cellprocessor.joda
-
Converts a String to a Joda LocalDate.
- ParseLocalDate() - Constructor for class org.supercsv.cellprocessor.joda.ParseLocalDate
-
Constructs a new ParseLocalDate processor, which parses a String
as a Joda LocalDate.
- ParseLocalDate(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.ParseLocalDate
-
Constructs a new ParseLocalDate processor, which parses a String
as a Joda LocalDate, then calls the next processor in the chain.
- ParseLocalDate(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.joda.ParseLocalDate
-
Constructs a new ParseLocalDate processor, which parses a String
as a Joda LocalDate using the supplied formatter.
- ParseLocalDate(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.ParseLocalDate
-
Constructs a new ParseLocalDate processor, which parses a String
as a Joda LocalDate using the supplied formatter, then calls the next
processor in the chain.
- ParseLocalDate - Class in org.supercsv.cellprocessor.time
-
Converts a String to a LocalDate.
- ParseLocalDate() - Constructor for class org.supercsv.cellprocessor.time.ParseLocalDate
-
- ParseLocalDate(CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.ParseLocalDate
-
Constructs a new
ParseLocalDate processor,
which parses a String recognised by
LocalDate.parse(CharSequence)
as a LocalDate, then calls the next processor in the chain.
- ParseLocalDate(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.time.ParseLocalDate
-
Constructs a new ParseLocalDate processor, which parses a String
as a LocalDate using the supplied formatter.
- ParseLocalDate(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.ParseLocalDate
-
Constructs a new ParseLocalDate processor, which parses a String
as a LocalDate using the supplied formatter, then calls the next
processor in the chain.
- ParseLocalDateTime - Class in org.supercsv.cellprocessor.joda
-
Converts a String to a Joda LocalDateTime.
- ParseLocalDateTime() - Constructor for class org.supercsv.cellprocessor.joda.ParseLocalDateTime
-
Constructs a new ParseLocalDateTime processor, which parses a
String as a Joda LocalDateTime.
- ParseLocalDateTime(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.ParseLocalDateTime
-
Constructs a new ParseLocalDateTime processor, which parses a
String as a Joda LocalDateTime, then calls the next processor in the
chain.
- ParseLocalDateTime(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.joda.ParseLocalDateTime
-
Constructs a new ParseLocalDateTime processor, which parses a
String as a Joda LocalDateTime using the supplied formatter.
- ParseLocalDateTime(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.ParseLocalDateTime
-
Constructs a new ParseLocalDateTime processor, which parses a
String as a Joda LocalDateTime using the supplied formatter, then calls
the next processor in the chain.
- ParseLocalDateTime - Class in org.supercsv.cellprocessor.time
-
Converts a String to a LocalDateTime.
- ParseLocalDateTime() - Constructor for class org.supercsv.cellprocessor.time.ParseLocalDateTime
-
- ParseLocalDateTime(CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.ParseLocalDateTime
-
Constructs a new ParseLocalDateTime processor, which parses a
String as a LocalDateTime, then calls the next processor in the
chain.
- ParseLocalDateTime(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.time.ParseLocalDateTime
-
Constructs a new ParseLocalDateTime processor, which parses a
String as a LocalDateTime using the supplied formatter.
- ParseLocalDateTime(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.ParseLocalDateTime
-
Constructs a new ParseLocalDateTime processor, which parses a
String as a LocalDateTime using the supplied formatter, then calls
the next processor in the chain.
- ParseLocalTime - Class in org.supercsv.cellprocessor.joda
-
Converts a String to a Joda LocalTime.
- ParseLocalTime() - Constructor for class org.supercsv.cellprocessor.joda.ParseLocalTime
-
Constructs a new ParseLocalTime processor, which parses a
String as a Joda LocalTime.
- ParseLocalTime(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.ParseLocalTime
-
Constructs a new ParseLocalTime processor, which parses a
String as a Joda LocalTime, then calls the next processor in the
chain.
- ParseLocalTime(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.joda.ParseLocalTime
-
Constructs a new ParseLocalTime processor, which parses a
String as a Joda LocalTime using the supplied formatter.
- ParseLocalTime(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.ParseLocalTime
-
Constructs a new ParseLocalTime processor, which parses a
String as a Joda LocalTime using the supplied formatter, then calls
the next processor in the chain.
- ParseLocalTime - Class in org.supercsv.cellprocessor.time
-
Converts a String to a LocalTime.
- ParseLocalTime() - Constructor for class org.supercsv.cellprocessor.time.ParseLocalTime
-
- ParseLocalTime(CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.ParseLocalTime
-
Constructs a new ParseLocalTime processor, which parses a
String as a LocalTime, then calls the next processor in the
chain.
- ParseLocalTime(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.time.ParseLocalTime
-
Constructs a new ParseLocalTime processor, which parses a
String as a LocalTime using the supplied formatter.
- ParseLocalTime(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.ParseLocalTime
-
Constructs a new ParseLocalTime processor, which parses a
String as a LocalTime using the supplied formatter, then calls
the next processor in the chain.
- ParseLong - Class in org.supercsv.cellprocessor
-
Converts a String to a Long.
- ParseLong() - Constructor for class org.supercsv.cellprocessor.ParseLong
-
Constructs a new ParseLong processor, which converts a String to a Long.
- ParseLong(LongCellProcessor) - Constructor for class org.supercsv.cellprocessor.ParseLong
-
Constructs a new ParseLong processor, which converts a String to a Long, then calls the next processor
in the chain.
- ParsePeriod - Class in org.supercsv.cellprocessor.joda
-
Converts a String to a Joda Period.
- ParsePeriod() - Constructor for class org.supercsv.cellprocessor.joda.ParsePeriod
-
Constructs a new ParsePeriod processor, which parses a String as
a Joda Period.
- ParsePeriod(CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.ParsePeriod
-
Constructs a new ParsePeriod processor, which parses a String as
a Joda Period, then calls the next processor in the chain.
- ParsePeriod(PeriodFormatter) - Constructor for class org.supercsv.cellprocessor.joda.ParsePeriod
-
Constructs a new ParsePeriod processor, which parses a String as
a Joda Period using the supplied formatter.
- ParsePeriod(PeriodFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.joda.ParsePeriod
-
Constructs a new ParsePeriod processor, which parses a String as
a Joda Period using the supplied formatter, then calls the next processor
in the chain.
- ParsePeriod - Class in org.supercsv.cellprocessor.time
-
Converts a String to a Period.
- ParsePeriod() - Constructor for class org.supercsv.cellprocessor.time.ParsePeriod
-
Constructs a new ParsePeriod processor, which parses a String as
a Period.
- ParsePeriod(CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.ParsePeriod
-
Constructs a new ParsePeriod processor, which parses a String as
a Period, then calls the next processor in the chain.
- ParseZonedDateTime - Class in org.supercsv.cellprocessor.time
-
Converts a String to a ZonedDateTime.
- ParseZonedDateTime() - Constructor for class org.supercsv.cellprocessor.time.ParseZonedDateTime
-
- ParseZonedDateTime(CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.ParseZonedDateTime
-
Constructs a new ParseZonedDateTime processor, which parses a String
as a ZonedDateTime, then calls the next processor in the chain.
- ParseZonedDateTime(DateTimeFormatter) - Constructor for class org.supercsv.cellprocessor.time.ParseZonedDateTime
-
Constructs a new ParseZonedDateTime processor, which parses a String
as a ZonedDateTime using the supplied formatter.
- ParseZonedDateTime(DateTimeFormatter, CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.ParseZonedDateTime
-
Constructs a new ParseZonedDateTime processor, which parses a String
as a ZonedDateTime using the supplied formatter, then calls the next
processor in the chain.
- ParseZoneId - Class in org.supercsv.cellprocessor.time
-
Converts a String to a ZoneId.
- ParseZoneId() - Constructor for class org.supercsv.cellprocessor.time.ParseZoneId
-
Constructs a new
ParseZoneId processor, which parses a
String recognized by
ZoneId.of(String)
as a ZoneId.
- ParseZoneId(CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.ParseZoneId
-
Constructs a new ParseZoneId processor, which parses a
String as a ZoneId, then calls the next processor in the
chain.
- ParseZoneId(Map<String, String>) - Constructor for class org.supercsv.cellprocessor.time.ParseZoneId
-
Constructs a new ParseZoneId processor, which parses a
String as a ZoneId using the supplied Zone ID mappings.
- ParseZoneId(Map<String, String>, CellProcessor) - Constructor for class org.supercsv.cellprocessor.time.ParseZoneId
-
Constructs a new ParseZoneId processor, which parses a
String as a ZoneId using the supplied Zone ID mappings, then calls the next processor in the
chain.
- read(Class<T>, String...) - Method in class org.supercsv.io.CsvBeanReader
-
Reads a row of a CSV file and populates an instance of the specified class, using the supplied name mapping to
map column values to the appropriate fields.
- read(Class<T>, String[], CellProcessor...) - Method in class org.supercsv.io.CsvBeanReader
-
Reads a row of a CSV file and populates an instance of the specified class, using the supplied name mapping to
map column values to the appropriate fields.
- read(T, String...) - Method in class org.supercsv.io.CsvBeanReader
-
Reads a row of a CSV file and populates the bean, using the supplied name mapping to map column values to the
appropriate fields.
- read(T, String[], CellProcessor...) - Method in class org.supercsv.io.CsvBeanReader
-
Reads a row of a CSV file and populates the bean, using the supplied name mapping to map column values to the
appropriate fields.
- read() - Method in class org.supercsv.io.CsvListReader
-
Reads a row of a CSV file and returns a List of Strings containing each column.
- read(CellProcessor...) - Method in class org.supercsv.io.CsvListReader
-
Reads a row of a CSV file and returns a List of Objects containing each column.
- read(String...) - Method in class org.supercsv.io.CsvMapReader
-
Reads a row of a CSV file into a Map, using the supplied name mapping to map column values to the appropriate map
entries.
- read(String[], CellProcessor[]) - Method in class org.supercsv.io.CsvMapReader
-
Reads a row of a CSV file into a Map, using the supplied name mapping to map column values to the appropriate map
entries, and the supplied processors to process the values before adding them to the Map.
- read(Class<T>) - Method in class org.supercsv.io.dozer.CsvDozerBeanReader
-
Reads a row of a CSV file and populates an instance of the specified class, using Dozer to map column values to
the appropriate fields.
- read(Class<T>, CellProcessor...) - Method in class org.supercsv.io.dozer.CsvDozerBeanReader
-
Reads a row of a CSV file and populates an instance of the specified class, using Dozer to map column values to
the appropriate fields.
- read(T) - Method in class org.supercsv.io.dozer.CsvDozerBeanReader
-
Reads a row of a CSV file and populates the supplied bean, using Dozer to map column values to the appropriate
fields.
- read(T, CellProcessor...) - Method in class org.supercsv.io.dozer.CsvDozerBeanReader
-
Reads a row of a CSV file and populates the supplied bean, using Dozer to map column values to the appropriate
fields.
- read(Class<T>) - Method in interface org.supercsv.io.dozer.ICsvDozerBeanReader
-
Reads a row of a CSV file and populates an instance of the specified class, using Dozer to map column values to
the appropriate fields.
- read(T) - Method in interface org.supercsv.io.dozer.ICsvDozerBeanReader
-
Reads a row of a CSV file and populates the supplied bean, using Dozer to map column values to the appropriate
fields.
- read(Class<T>, CellProcessor...) - Method in interface org.supercsv.io.dozer.ICsvDozerBeanReader
-
Reads a row of a CSV file and populates an instance of the specified class, using Dozer to map column values to
the appropriate fields.
- read(T, CellProcessor...) - Method in interface org.supercsv.io.dozer.ICsvDozerBeanReader
-
Reads a row of a CSV file and populates the supplied bean, using Dozer to map column values to the appropriate
fields.
- read(Class<T>, String...) - Method in interface org.supercsv.io.ICsvBeanReader
-
Reads a row of a CSV file and populates an instance of the specified class, using the supplied name mapping to
map column values to the appropriate fields.
- read(T, String...) - Method in interface org.supercsv.io.ICsvBeanReader
-
Reads a row of a CSV file and populates the bean, using the supplied name mapping to map column values to the
appropriate fields.
- read(Class<T>, String[], CellProcessor...) - Method in interface org.supercsv.io.ICsvBeanReader
-
Reads a row of a CSV file and populates an instance of the specified class, using the supplied name mapping to
map column values to the appropriate fields.
- read(T, String[], CellProcessor...) - Method in interface org.supercsv.io.ICsvBeanReader
-
Reads a row of a CSV file and populates the bean, using the supplied name mapping to map column values to the
appropriate fields.
- read() - Method in interface org.supercsv.io.ICsvListReader
-
Reads a row of a CSV file and returns a List of Strings containing each column.
- read(CellProcessor...) - Method in interface org.supercsv.io.ICsvListReader
-
Reads a row of a CSV file and returns a List of Objects containing each column.
- read(String...) - Method in interface org.supercsv.io.ICsvMapReader
-
Reads a row of a CSV file into a Map, using the supplied name mapping to map column values to the appropriate map
entries.
- read(String[], CellProcessor[]) - Method in interface org.supercsv.io.ICsvMapReader
-
Reads a row of a CSV file into a Map, using the supplied name mapping to map column values to the appropriate map
entries, and the supplied processors to process the values before adding them to the Map.
- readColumns(List<String>) - Method in interface org.supercsv.io.ITokenizer
-
Reads a CSV row into the supplied List of columns (which can potentially span multiple lines in the file).
- readColumns(List<String>) - Method in class org.supercsv.io.Tokenizer
-
Reads a CSV row into the supplied List of columns (which can potentially span multiple lines in the file).
- readLine() - Method in class org.supercsv.io.AbstractTokenizer
-
Reads a line of text.
- readRow() - Method in class org.supercsv.io.AbstractCsvReader
-
Calls the tokenizer to read a CSV row.
- ReflectionUtils - Class in org.supercsv.util
-
Provides useful utility methods for reflection.
- registerMessage(String, String) - Static method in class org.supercsv.cellprocessor.constraint.StrRegEx
-
Register a message detailing in plain language the constraint representing a regular expression.
- RequireHashCode - Class in org.supercsv.cellprocessor.constraint
-
This processor converts the input to a String, and ensures that the input's hash function matches any of a given set
of hashcodes.
- RequireHashCode(int...) - Constructor for class org.supercsv.cellprocessor.constraint.RequireHashCode
-
Constructs a new RequireHashCode processor, which converts the input to a String, and ensures that the
input's hash function matches any of a given set of hashcodes.
- RequireHashCode(int, CellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.RequireHashCode
-
Constructs a new RequireHashCode processor, which converts the input to a String, ensures that the
input's hash function matches the supplied hashcode, then calls the next processor in the chain.
- RequireHashCode(int[], CellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.RequireHashCode
-
Constructs a new RequireHashCode processor, which converts the input to a String, ensures that the
input's hash function matches any of a given set of hashcodes, then calls the next processor in the chain.
- RequireSubStr - Class in org.supercsv.cellprocessor.constraint
-
Converts the input to a String and ensures that the input contains at least one of the specified substrings.
- RequireSubStr(String...) - Constructor for class org.supercsv.cellprocessor.constraint.RequireSubStr
-
Converts the input to a String and ensures that the input contains at least one of the specified substrings.
- RequireSubStr(List<String>, CellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.RequireSubStr
-
Converts the input to a String, ensures that the input contains at least one of the specified substrings, then
calls the next processor in the chain.
- RequireSubStr(String, CellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.RequireSubStr
-
Converts the input to a String, ensures that the input contains the specified substring, then calls the next
processor in the chain.
- RequireSubStr(String[], CellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.RequireSubStr
-
Converts the input to a String, ensures that the input contains at least one of the specified substrings, then
calls the next processor in the chain.
- SelectiveCsvEncoder - Class in org.supercsv.encoder
-
A selective CsvEncoder implementation - only the desired column numbers (if any) are encoded.
- SelectiveCsvEncoder(int...) - Constructor for class org.supercsv.encoder.SelectiveCsvEncoder
-
Constructs a new SelectiveCsvEncoder that encodes columns by column number.
- SelectiveCsvEncoder(boolean[]) - Constructor for class org.supercsv.encoder.SelectiveCsvEncoder
-
Constructs a new SelectiveCsvEncoder that encodes columns if the element representing that column in the
supplied array is true.
- set(K1, K2, K3, V) - Method in class org.supercsv.util.ThreeDHashMap
-
Insert a value
- set(K1, K2, V) - Method in class org.supercsv.util.TwoDHashMap
-
Insert a value
- SET_PREFIX - Static variable in class org.supercsv.util.ReflectionUtils
-
- setColumnNumber(int) - Method in class org.supercsv.util.CsvContext
-
- setColumns(List<Object>) - Method in class org.supercsv.io.dozer.CsvDozerBeanData
-
Sets the List of columns
- setLineNumber(int) - Method in class org.supercsv.util.CsvContext
-
- setRowNumber(int) - Method in class org.supercsv.util.CsvContext
-
- setRowSource(List<Object>) - Method in class org.supercsv.util.CsvContext
-
- size() - Method in class org.supercsv.util.ThreeDHashMap
-
Returns the number of key-value mappings in this map for the first key.
- size(K1) - Method in class org.supercsv.util.ThreeDHashMap
-
Returns the number of key-value mappings in this map for the second key.
- size(K1, K2) - Method in class org.supercsv.util.ThreeDHashMap
-
Returns the number of key-value mappings in this map for the third key.
- size() - Method in class org.supercsv.util.TwoDHashMap
-
Returns the number of key-value mappings in this map for the first key.
- size(K1) - Method in class org.supercsv.util.TwoDHashMap
-
Returns the number of key-value mappings in this map for the second key.
- skipComments(CommentMatcher) - Method in class org.supercsv.prefs.CsvPreference.Builder
-
Enables the skipping of comments.
- STANDARD_PREFERENCE - Static variable in class org.supercsv.prefs.CsvPreference
-
Ready to use configuration that should cover 99% of all usages.
- StringCellProcessor - Interface in org.supercsv.cellprocessor.ift
-
Interface to indicate the a CellProcessor is capable of processing String values.
- Strlen - Class in org.supercsv.cellprocessor.constraint
-
This processor ensures that the input String has a length equal to any of the supplied lengths.
- Strlen(int...) - Constructor for class org.supercsv.cellprocessor.constraint.Strlen
-
Constructs a new Strlen processor, which ensures that the input String has a length equal to any of the
supplied lengths.
- Strlen(int, CellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.Strlen
-
Constructs a new Strlen processor, which ensures that the input String has a length equal to the
supplied length, then calls the next processor in the chain.
- Strlen(int[], CellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.Strlen
-
Constructs a new Strlen processor, which ensures that the input String has a length equal to any of the
supplied lengths, then calls the next processor in the chain.
- StrMinMax - Class in org.supercsv.cellprocessor.constraint
-
This constraint ensures that the input data has a string length between the supplied min and max values (both
inclusive).
- StrMinMax(long, long) - Constructor for class org.supercsv.cellprocessor.constraint.StrMinMax
-
Constructs a new StrMinMax processor, which ensures that the input data has a string length between the
supplied min and max values (both inclusive).
- StrMinMax(long, long, CellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.StrMinMax
-
Constructs a new StrMinMax processor, which ensures that the input data has a string length between the
supplied min and max values (both inclusive), then calls the next processor in the chain.
- StrNotNullOrEmpty - Class in org.supercsv.cellprocessor.constraint
-
This processor checks if the input is null or an empty string, and raises an exception in that case.
- StrNotNullOrEmpty() - Constructor for class org.supercsv.cellprocessor.constraint.StrNotNullOrEmpty
-
Constructs a new StrNotNullOrEmpty processor, which checks for null/empty Strings.
- StrNotNullOrEmpty(CellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.StrNotNullOrEmpty
-
Constructs a new StrNotNullOrEmpty processor, which checks for null/empty Strings, then calls the next
processor in the chain.
- StrRegEx - Class in org.supercsv.cellprocessor.constraint
-
This constraint ensures that the input data matches the given regular expression.
- StrRegEx(String) - Constructor for class org.supercsv.cellprocessor.constraint.StrRegEx
-
Constructs a new StrRegEx processor, which ensures that the input data matches the given regular
expression.
- StrRegEx(String, StringCellProcessor) - Constructor for class org.supercsv.cellprocessor.constraint.StrRegEx
-
Constructs a new StrRegEx processor, which ensures that the input data matches the given regular
expression, then calls the next processor in the chain.
- StrReplace - Class in org.supercsv.cellprocessor
-
Replaces each substring of the input string that matches the given regular expression with the given replacement.
- StrReplace(String, String) - Constructor for class org.supercsv.cellprocessor.StrReplace
-
Constructs a new StrReplace processor, which replaces each substring of the input that matches the regex
with the supplied replacement.
- StrReplace(String, String, StringCellProcessor) - Constructor for class org.supercsv.cellprocessor.StrReplace
-
Constructs a new StrReplace processor, which replaces each substring of the input that matches the regex
with the supplied replacement, then calls the next processor in the chain.
- SuperCsvCellProcessorException - Exception in org.supercsv.exception
-
Exception thrown when CellProcessor execution fails (typically due to invalid input) - constraint validating
CellProcessors should throw
SuperCsvConstraintViolationException
for constraint validation failures.
- SuperCsvCellProcessorException(String, CsvContext, CellProcessor) - Constructor for exception org.supercsv.exception.SuperCsvCellProcessorException
-
Constructs a new SuperCsvCellProcessorException.
- SuperCsvCellProcessorException(String, CsvContext, CellProcessor, Throwable) - Constructor for exception org.supercsv.exception.SuperCsvCellProcessorException
-
Constructs a new SuperCsvCellProcessorException.
- SuperCsvCellProcessorException(Class<?>, Object, CsvContext, CellProcessor) - Constructor for exception org.supercsv.exception.SuperCsvCellProcessorException
-
Constructs a new SuperCsvCellProcessorException to indicate that the value received by a CellProcessor
wasn't of the correct type.
- SuperCsvConstraintViolationException - Exception in org.supercsv.exception
-
Exception thrown by CellProcessors when constraint validation fails.
- SuperCsvConstraintViolationException(String, CsvContext, CellProcessor) - Constructor for exception org.supercsv.exception.SuperCsvConstraintViolationException
-
Constructs a new SuperCsvConstraintViolationException.
- SuperCsvConstraintViolationException(String, CsvContext, CellProcessor, Throwable) - Constructor for exception org.supercsv.exception.SuperCsvConstraintViolationException
-
Constructs a new SuperCsvConstraintViolationException.
- SuperCsvException - Exception in org.supercsv.exception
-
Generic SuperCSV Exception class.
- SuperCsvException(String) - Constructor for exception org.supercsv.exception.SuperCsvException
-
Constructs a new SuperCsvException.
- SuperCsvException(String, CsvContext) - Constructor for exception org.supercsv.exception.SuperCsvException
-
Constructs a new SuperCsvException.
- SuperCsvException(String, CsvContext, Throwable) - Constructor for exception org.supercsv.exception.SuperCsvException
-
Constructs a new SuperCsvException.
- SuperCsvReflectionException - Exception in org.supercsv.exception
-
Wraps the following reflection related checked exceptions:
- SuperCsvReflectionException(String) - Constructor for exception org.supercsv.exception.SuperCsvReflectionException
-
Constructs a new SuperCsvReflectionException.
- SuperCsvReflectionException(String, Throwable) - Constructor for exception org.supercsv.exception.SuperCsvReflectionException
-
Constructs a new SuperCsvReflectionException.
- surroundingSpacesNeedQuotes(boolean) - Method in class org.supercsv.prefs.CsvPreference.Builder
-
Flag indicating whether spaces at the beginning or end of a cell should be ignored if they're not surrounded
by quotes (applicable to both reading and writing CSV).
- write(Object, String...) - Method in class org.supercsv.io.CsvBeanWriter
-
Writes the fields of the object as columns of a CSV file, using the supplied name mapping to map fields to the
appropriate columns.
- write(Object, String[], CellProcessor[]) - Method in class org.supercsv.io.CsvBeanWriter
-
Writes the fields of the object as columns of a CSV file, using the supplied name mapping to map fields to the
appropriate columns.
- write(List<?>, CellProcessor[]) - Method in class org.supercsv.io.CsvListWriter
-
Writes a List of Objects as columns of a CSV file, performing any necessary processing beforehand.
- write(List<?>) - Method in class org.supercsv.io.CsvListWriter
-
Writes a List of Objects as columns of a CSV file.
- write(Object...) - Method in class org.supercsv.io.CsvListWriter
-
Writes a array of Objects as columns of a CSV file.
- write(String...) - Method in class org.supercsv.io.CsvListWriter
-
Writes an array of strings as columns of a CSV file.
- write(Map<String, ?>, String...) - Method in class org.supercsv.io.CsvMapWriter
-
Writes the values of the Map as columns of a CSV file, using the supplied name mapping to map values to the
appropriate columns.
- write(Map<String, ?>, String[], CellProcessor[]) - Method in class org.supercsv.io.CsvMapWriter
-
Writes the values of the Map as columns of a CSV file, using the supplied name mapping to map values to the
appropriate columns.
- write(ResultSet) - Method in class org.supercsv.io.CsvResultSetWriter
-
Writes a JDBC ResultSet
as a CSV file.
- write(ResultSet, CellProcessor[]) - Method in class org.supercsv.io.CsvResultSetWriter
-
Writes a JDBC ResultSet
as a CSV file.
- write(Object) - Method in class org.supercsv.io.dozer.CsvDozerBeanWriter
-
Writes the fields of the object as columns of a CSV file, using the pre-configured DozerBeanMapper to map fields
to the appropriate columns.
- write(Object, CellProcessor[]) - Method in class org.supercsv.io.dozer.CsvDozerBeanWriter
-
Writes the fields of the object as columns of a CSV file, using the pre-configured DozerBeanMapper to map fields
to the appropriate columns.
- write(Object) - Method in interface org.supercsv.io.dozer.ICsvDozerBeanWriter
-
Writes the fields of the object as columns of a CSV file, using the pre-configured DozerBeanMapper to map fields
to the appropriate columns.
- write(Object, CellProcessor[]) - Method in interface org.supercsv.io.dozer.ICsvDozerBeanWriter
-
Writes the fields of the object as columns of a CSV file, using the pre-configured DozerBeanMapper to map fields
to the appropriate columns.
- write(Object, String...) - Method in interface org.supercsv.io.ICsvBeanWriter
-
Writes the fields of the object as columns of a CSV file, using the supplied name mapping to map fields to the
appropriate columns.
- write(Object, String[], CellProcessor[]) - Method in interface org.supercsv.io.ICsvBeanWriter
-
Writes the fields of the object as columns of a CSV file, using the supplied name mapping to map fields to the
appropriate columns.
- write(List<?>) - Method in interface org.supercsv.io.ICsvListWriter
-
Writes a List of Objects as columns of a CSV file.
- write(List<?>, CellProcessor[]) - Method in interface org.supercsv.io.ICsvListWriter
-
Writes a List of Objects as columns of a CSV file, performing any necessary processing beforehand.
- write(Object...) - Method in interface org.supercsv.io.ICsvListWriter
-
Writes a array of Objects as columns of a CSV file.
- write(String...) - Method in interface org.supercsv.io.ICsvListWriter
-
Writes an array of strings as columns of a CSV file.
- write(Map<String, ?>, String...) - Method in interface org.supercsv.io.ICsvMapWriter
-
Writes the values of the Map as columns of a CSV file, using the supplied name mapping to map values to the
appropriate columns.
- write(Map<String, ?>, String[], CellProcessor[]) - Method in interface org.supercsv.io.ICsvMapWriter
-
Writes the values of the Map as columns of a CSV file, using the supplied name mapping to map values to the
appropriate columns.
- write(ResultSet) - Method in interface org.supercsv.io.ICsvResultSetWriter
-
Writes a JDBC ResultSet
as a CSV file.
- write(ResultSet, CellProcessor[]) - Method in interface org.supercsv.io.ICsvResultSetWriter
-
Writes a JDBC ResultSet
as a CSV file.
- writeComment(String) - Method in class org.supercsv.io.AbstractCsvWriter
-
Writes a single-line comment to the CSV file (the comment must already include any special comment characters
e.g.
- writeComment(String) - Method in interface org.supercsv.io.ICsvWriter
-
Writes a single-line comment to the CSV file (the comment must already include any special comment characters
e.g.
- writeHeader(String...) - Method in class org.supercsv.io.AbstractCsvWriter
-
Writes the header of the CSV file.
- writeHeader(String...) - Method in interface org.supercsv.io.ICsvWriter
-
Writes the header of the CSV file.
- writeRow(List<?>) - Method in class org.supercsv.io.AbstractCsvWriter
-
Writes a List of columns as a line to the CsvWriter.
- writeRow(Object...) - Method in class org.supercsv.io.AbstractCsvWriter
-
Writes one or more Object columns as a line to the CsvWriter.
- writeRow(String...) - Method in class org.supercsv.io.AbstractCsvWriter
-
Writes one or more String columns as a line to the CsvWriter.