Uses of Class
org.supercsv.util.CsvContext
Packages that use CsvContext
Package
Description
Provides CellProcessor classes for conversion, formatting and parsing.
Provides CellProcessor classes for enforcing constraints.
Provides CellProcessor interfaces, used to control/restrict how processors can be chained together.
Provides CellProcessor classes for converting, formatting and parsing
java.time
classes.Provides the classes used for encoding CSV for writing.
Provides the exceptions that may be thrown by Super CSV.
Provides the classes used to quote CSV for output.
Provides the utility classes used by Super CSV.
-
Uses of CsvContext in org.supercsv.cellprocessor
Methods in org.supercsv.cellprocessor with parameters of type CsvContextModifier and TypeMethodDescriptionCellProcessorAdaptor.NullObjectPattern.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.Collector.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.ConvertNullTo.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.FmtBool.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.FmtDate.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.FmtNumber.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.HashMapper.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.ParseBigDecimal.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.ParseBool.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.ParseChar.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.ParseDate.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.ParseDouble.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.ParseEnum.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.ParseInt.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.ParseLong.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.StrReplace.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.Token.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.Trim.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.Truncate.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.protected void
CellProcessorAdaptor.validateInputNotNull
(Object value, CsvContext context) Checks that the input value is not null, throwing a NullInputException if it is. -
Uses of CsvContext in org.supercsv.cellprocessor.constraint
Methods in org.supercsv.cellprocessor.constraint with parameters of type CsvContextModifier and TypeMethodDescriptionDMinMax.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.Equals.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.ForbidSubStr.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.IsElementOf.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.IsIncludedIn.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.LMinMax.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.NotNull.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.RequireHashCode.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.RequireSubStr.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.Strlen.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.StrMinMax.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.StrNotNullOrEmpty.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.StrRegEx.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.Unique.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.UniqueHashCode.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints. -
Uses of CsvContext in org.supercsv.cellprocessor.ift
Methods in org.supercsv.cellprocessor.ift with parameters of type CsvContextModifier and TypeMethodDescription<T> T
CellProcessor.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints. -
Uses of CsvContext in org.supercsv.cellprocessor.time
Methods in org.supercsv.cellprocessor.time with parameters of type CsvContextModifier and TypeMethodDescriptionAbstractTemporalAccessorFormattingProcessor.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.AbstractTemporalAccessorParsingProcessor.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.FmtDuration.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.FmtPeriod.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.FmtZoneId.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.ParseDuration.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.ParsePeriod.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints.ParseZoneId.execute
(Object value, CsvContext context) This method is invoked by the framework when the processor needs to process data or check constraints. -
Uses of CsvContext in org.supercsv.encoder
Methods in org.supercsv.encoder with parameters of type CsvContextModifier and TypeMethodDescriptionCsvEncoder.encode
(String input, CsvContext context, CsvPreference preference) Encodes a String to be written to a CSV file.DefaultCsvEncoder.encode
(String input, CsvContext context, CsvPreference preference) Encodes a String to be written to a CSV file.SelectiveCsvEncoder.encode
(String input, CsvContext context, CsvPreference preference) Encodes a String to be written to a CSV file. -
Uses of CsvContext in org.supercsv.exception
Fields in org.supercsv.exception declared as CsvContextMethods in org.supercsv.exception that return CsvContextModifier and TypeMethodDescriptionSuperCsvException.getCsvContext()
Gets the current CSV context.Constructors in org.supercsv.exception with parameters of type CsvContextModifierConstructorDescriptionSuperCsvCellProcessorException
(Class<?> expectedType, Object actualValue, CsvContext context, CellProcessor processor) Constructs a new SuperCsvCellProcessorException to indicate that the value received by a CellProcessor wasn't of the correct type.SuperCsvCellProcessorException
(String msg, CsvContext context, CellProcessor processor) Constructs a new SuperCsvCellProcessorException.SuperCsvCellProcessorException
(String msg, CsvContext context, CellProcessor processor, Throwable t) Constructs a new SuperCsvCellProcessorException.SuperCsvConstraintViolationException
(String msg, CsvContext context, CellProcessor processor) Constructs a new SuperCsvConstraintViolationException.SuperCsvConstraintViolationException
(String msg, CsvContext context, CellProcessor processor, Throwable t) Constructs a new SuperCsvConstraintViolationException.SuperCsvException
(String msg, CsvContext context) Constructs a new SuperCsvException.SuperCsvException
(String msg, CsvContext context, Throwable t) Constructs a new SuperCsvException. -
Uses of CsvContext in org.supercsv.quote
Methods in org.supercsv.quote with parameters of type CsvContextModifier and TypeMethodDescriptionboolean
AlwaysQuoteMode.quotesRequired
(String csvColumn, CsvContext context, CsvPreference preference) Determines whether surrounding quotes are mandatory in cases where the CSV column would not normally be quoted (the data to be written doesn't contain special characters).boolean
ColumnQuoteMode.quotesRequired
(String csvColumn, CsvContext context, CsvPreference preference) Determines whether surrounding quotes are mandatory in cases where the CSV column would not normally be quoted (the data to be written doesn't contain special characters).boolean
NormalQuoteMode.quotesRequired
(String csvColumn, CsvContext context, CsvPreference preference) Determines whether surrounding quotes are mandatory in cases where the CSV column would not normally be quoted (the data to be written doesn't contain special characters).boolean
QuoteMode.quotesRequired
(String csvColumn, CsvContext context, CsvPreference preference) Determines whether surrounding quotes are mandatory in cases where the CSV column would not normally be quoted (the data to be written doesn't contain special characters). -
Uses of CsvContext in org.supercsv.util
Constructors in org.supercsv.util with parameters of type CsvContextModifierConstructorDescriptionConstructs a new CsvContext that is a copy of the provided CsvContext.