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 |
---|---|
java.lang.Object |
Truncate.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
Trim.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
Token.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
StrReplace.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
ParseLong.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
ParseInt.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
ParseDouble.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
ParseDate.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
ParseChar.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
ParseBool.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
ParseBigDecimal.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
HashMapper.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
FmtNumber.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
FmtDate.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
FmtBool.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
ConvertNullTo.execute(java.lang.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(java.lang.Object value,
CsvContext context)
Checks that the input value is not null, throwing a NullInputException if it is.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
UniqueHashCode.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
Unique.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
StrRegEx.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
StrNotNullOrEmpty.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
StrMinMax.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
Strlen.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
RequireSubStr.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
RequireHashCode.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
NotNull.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
LMinMax.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
IsIncludedIn.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
ForbidSubStr.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
Equals.execute(java.lang.Object value,
CsvContext context)
This method is invoked by the framework when the processor needs to process data or check constraints.
|
java.lang.Object |
DMinMax.execute(java.lang.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 |
---|---|
java.lang.Object |
CellProcessor.execute(java.lang.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(java.lang.Class<?> expectedType,
java.lang.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(java.lang.String msg,
CsvContext context,
CellProcessor processor)
Constructs a new SuperCsvCellProcessorException.
|
SuperCsvCellProcessorException(java.lang.String msg,
CsvContext context,
CellProcessor processor,
java.lang.Throwable t)
Constructs a new SuperCsvCellProcessorException.
|
SuperCsvConstraintViolationException(java.lang.String msg,
CsvContext context,
CellProcessor processor)
Constructs a new SuperCsvConstraintViolationException.
|
SuperCsvConstraintViolationException(java.lang.String msg,
CsvContext context,
CellProcessor processor,
java.lang.Throwable t)
Constructs a new SuperCsvConstraintViolationException.
|
SuperCsvException(java.lang.String msg,
CsvContext context)
Constructs a new SuperCsvException.
|
SuperCsvException(java.lang.String msg,
CsvContext context,
java.lang.Throwable t)
Constructs a new SuperCsvException.
|
Copyright © 2007-2012 Super CSV. All Rights Reserved.