Package | Description |
---|---|
org.supercsv.cellprocessor |
Provides CellProcessor classes for conversion, formatting and parsing.
|
org.supercsv.cellprocessor.constraint |
Provides CellProcessor classes for enforcing constraints.
|
org.supercsv.cellprocessor.ift |
Provides CellProcessor interfaces, used to control/restrict how processors can be chained together.
|
org.supercsv.exception |
Provides the exceptions that may be thrown by Super CSV.
|
Modifier and Type | Method and Description |
---|---|
Object |
Truncate.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
Trim.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
Token.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
StrReplace.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
ParseLong.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
ParseInt.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
ParseDouble.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
ParseDate.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
ParseChar.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
ParseBool.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
ParseBigDecimal.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
HashMapper.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
FmtNumber.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
FmtDate.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
FmtBool.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
ConvertNullTo.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.
|
Modifier and Type | Method and Description |
---|---|
Object |
UniqueHashCode.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
Unique.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
StrRegEx.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
StrNotNullOrEmpty.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
StrMinMax.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
Strlen.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
RequireSubStr.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
RequireHashCode.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
NotNull.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
LMinMax.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
IsIncludedIn.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
ForbidSubStr.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
Equals.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Object |
DMinMax.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Modifier and Type | Method and Description |
---|---|
Object |
CellProcessor.execute(Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
Modifier and Type | Method and Description |
---|---|
CsvContext |
SuperCsvException.getCsvContext()
Gets the current CSV context.
|
Constructor and Description |
---|
SuperCsvCellProcessorException(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.
|
Copyright © 2007-2012 Super CSV. All Rights Reserved.