public class Conversions extends Object
com.univocity.parsers.conversions.Conversion, as well as useful methods for obtaining new instances of these.| Modifier and Type | Method and Description |
|---|---|
static FormattedBigDecimalConversion |
formatToBigDecimal(BigDecimal defaultValueForNullString,
String... numberFormats)
Returns a new instance of
FormattedBigDecimalConversion |
static FormattedBigDecimalConversion |
formatToBigDecimal(BigDecimal defaultValueForNullString,
String stringIfNull,
String... numberFormats)
Returns a new instance of
FormattedBigDecimalConversion |
static FormattedBigDecimalConversion |
formatToBigDecimal(String... numberFormats)
Returns a new instance of
FormattedBigDecimalConversion |
static <T extends Number> |
formatToNumber(Class<T> numberType,
String... numberFormats)
Returns a new instance of
NumericConversion |
static NumericConversion<Number> |
formatToNumber(String... numberFormats)
Returns a new instance of
NumericConversion |
static ValidatedConversion |
noneOf(String... noneOf)
Returns a new instance of
ValidatedConversion to validate values of a record
Nulls and blanks are not be allowed by default. |
static ValidatedConversion |
notBlank()
Returns a
ValidatedConversion that doesn't allow null or blank values |
static ValidatedConversion |
notBlank(String regexToMatch)
Returns a
ValidatedConversion that verifies the format of a given value |
static ValidatedConversion |
notNull()
Returns a
ValidatedConversion that doesn't allow null values |
static ValidatedConversion |
oneOf(String... oneOf)
Returns a new instance of
ValidatedConversion to validate values of a record
Nulls and blanks are not be allowed by default. |
static RegexConversion |
replace(String replaceRegex,
String replacement)
Returns a new instance of
RegexConversion |
static ToStringConversion |
string()
Returns a singleton instance of
ToStringConversion |
static BigDecimalConversion |
toBigDecimal()
Returns a new instance of
BigDecimalConversion |
static BigIntegerConversion |
toBigInteger()
Returns a new instance of
BigIntegerConversion |
static BooleanConversion |
toBoolean()
Returns a new instance of
BooleanConversion that converts the string "true" to true, and the String "false" to false. |
static BooleanConversion |
toBoolean(Boolean defaultValueForNullString,
String defaultValueForNullBoolean,
String[] valuesForTrue,
String[] valuesForFalse)
Returns a new instance of
BooleanConversion |
static BooleanConversion |
toBoolean(Boolean defaultValueForNullString,
String defaultValueForNullBoolean,
String valueForTrue,
String valueForFalse)
Returns a new instance of
BooleanConversion |
static BooleanConversion |
toBoolean(String[] valuesForTrue,
String[] valuesForFalse)
Returns a new instance of
BooleanConversion |
static BooleanConversion |
toBoolean(String valueForTrue,
String valueForFalse)
Returns a new instance of
BooleanConversion |
static ByteConversion |
toByte()
Returns a new instance of
ByteConversion |
static CalendarConversion |
toCalendar(Calendar dateIfNull,
String... dateFormats)
Returns a new instance of
CalendarConversion |
static CalendarConversion |
toCalendar(Calendar dateIfNull,
String stringIfNull,
String... dateFormats)
Returns a new instance of
CalendarConversion |
static CalendarConversion |
toCalendar(Locale locale,
Calendar dateIfNull,
String... dateFormats)
Returns a new instance of
CalendarConversion |
static CalendarConversion |
toCalendar(Locale locale,
Calendar dateIfNull,
String stringIfNull,
String... dateFormats)
Returns a new instance of
CalendarConversion |
static CalendarConversion |
toCalendar(Locale locale,
String... dateFormats)
Returns a new instance of
CalendarConversion |
static CalendarConversion |
toCalendar(String... dateFormats)
Returns a new instance of
CalendarConversion |
static CalendarConversion |
toCalendar(TimeZone timeZone,
Locale locale,
Calendar dateIfNull,
String stringIfNull,
String... dateFormats)
Returns a new instance of
CalendarConversion |
static CharacterConversion |
toChar()
Returns a new instance of
CharacterConversion |
static CharacterConversion |
toChar(Character defaultValueForNullString)
Returns a new instance of
CharacterConversion |
static CharacterConversion |
toChar(Character defaultValueForNullString,
String defaultValueForNullChar)
Returns a new instance of
CharacterConversion |
static DateConversion |
toDate(Date dateIfNull,
String... dateFormats)
Returns a new instance of
DateConversion |
static DateConversion |
toDate(Date dateIfNull,
String stringIfNull,
String... dateFormats)
Returns a new instance of
DateConversion |
static DateConversion |
toDate(Locale locale,
Date dateIfNull,
String... dateFormats)
Returns a new instance of
DateConversion |
static DateConversion |
toDate(Locale locale,
Date dateIfNull,
String stringIfNull,
String... dateFormats)
Returns a new instance of
DateConversion |
static DateConversion |
toDate(Locale locale,
String... dateFormats)
Returns a new instance of
DateConversion |
static DateConversion |
toDate(String... dateFormats)
Returns a new instance of
DateConversion |
static DateConversion |
toDate(TimeZone timeZone,
Locale locale,
Date dateIfNull,
String stringIfNull,
String... dateFormats)
Returns a new instance of
DateConversion |
static DoubleConversion |
toDouble()
Returns a new instance of
DoubleConversion |
static <T extends Enum<T>> |
toEnum(Class<T> enumType)
Returns a new instance of
EnumConversion |
static <T extends Enum<T>> |
toEnum(Class<T> enumType,
EnumSelector... selectors)
Returns a new instance of
EnumConversion |
static <T extends Enum<T>> |
toEnum(Class<T> enumType,
String customEnumElement,
EnumSelector... selectors)
Returns a new instance of
EnumConversion |
static <T extends Enum<T>> |
toEnum(Class<T> enumType,
T valueIfStringIsNull,
String valueIfEnumIsNull,
String customEnumElement,
EnumSelector... selectors)
Returns a new instance of
EnumConversion |
static FloatConversion |
toFloat()
Returns a new instance of
FloatConversion |
static FormattedDateConversion |
toFormattedDate(String pattern)
Returns a new instance of
FormattedDateConversion |
static FormattedDateConversion |
toFormattedDate(String pattern,
Locale locale)
Returns a new instance of
FormattedDateConversion |
static FormattedDateConversion |
toFormattedDate(String pattern,
Locale locale,
String valueIfObjectIsNull)
Returns a new instance of
FormattedDateConversion |
static FormattedDateConversion |
toFormattedDate(String pattern,
String valueIfObjectIsNull)
Returns a new instance of
FormattedDateConversion |
static IntegerConversion |
toInteger()
Returns a new instance of
IntegerConversion |
static LongConversion |
toLong()
Returns a new instance of
LongConversion |
static LowerCaseConversion |
toLowerCase()
Returns a singleton instance of
LowerCaseConversion |
static NullStringConversion |
toNull(String... nullRepresentations)
Returns a new instance of
NullStringConversion |
static ShortConversion |
toShort()
Returns a new instance of
ShortConversion |
static UpperCaseConversion |
toUpperCase()
Returns a singleton instance of
UpperCaseConversion |
static TrimConversion |
trim()
Returns a singleton instance of
TrimConversion |
static TrimConversion |
trim(int length)
Returns a
TrimConversion that limits the output to a fixed length |
static ValidatedConversion |
validate(boolean nullable,
boolean allowBlanks)
Returns a
ValidatedConversion that checks for nulls or blank values. |
static ValidatedConversion |
validate(boolean nullable,
boolean allowBlanks,
String regexToMatch)
Returns a
ValidatedConversion that checks for nulls or blank values. |
static ValidatedConversion |
validate(boolean nullable,
boolean allowBlanks,
String[] oneOf,
String[] noneOf)
Returns a new instance of
ValidatedConversion to validate values of a record |
static ValidatedConversion |
validate(boolean nullable,
boolean allowBlanks,
String[] oneOf,
String[] noneOf,
String regexToMatch)
Returns a new instance of
ValidatedConversion to validate values of a record |
public static ToStringConversion string()
ToStringConversionToStringConversionpublic static UpperCaseConversion toUpperCase()
UpperCaseConversionUpperCaseConversionpublic static LowerCaseConversion toLowerCase()
LowerCaseConversionLowerCaseConversionpublic static TrimConversion trim()
TrimConversionTrimConversionpublic static TrimConversion trim(int length)
TrimConversion that limits the output to a fixed lengthlength - the maximum length a value can contain. Characters after this limit will
be discarded.public static RegexConversion replace(String replaceRegex, String replacement)
RegexConversionreplaceRegex - the regular expression used to match contents of a given input Stringreplacement - the replacement content to replace any contents matched by the given regular expressionRegexConversion created with the given parameters.public static NullStringConversion toNull(String... nullRepresentations)
NullStringConversionnullRepresentations - the sequence of Strings that represent a null value.NullStringConversion created with the given parameters.public static DateConversion toDate(Locale locale, String... dateFormats)
DateConversionlocale - the Locale that determines how the date mask should be formatted.dateFormats - list of acceptable date patterns. The first pattern in this sequence will be used to convert a Date into a String in DateConversion.revert(Date).DateConversion created with the given parameters.public static DateConversion toDate(String... dateFormats)
DateConversiondateFormats - list of acceptable date patterns. The first pattern in this sequence will be used to convert a Date into a String in DateConversion.revert(Date).DateConversion created with the given parameters.public static DateConversion toDate(Locale locale, Date dateIfNull, String... dateFormats)
DateConversionlocale - the Locale that determines how the date mask should be formatted.dateIfNull - default Date value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.dateFormats - list of acceptable date patterns. The first pattern in this sequence will be used to convert a Date into a String in DateConversion.revert(Date).DateConversion created with the given parameters.public static DateConversion toDate(Date dateIfNull, String... dateFormats)
DateConversiondateIfNull - default Date value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.dateFormats - list of acceptable date patterns. The first pattern in this sequence will be used to convert a Date into a String in DateConversion.revert(Date).DateConversion created with the given parameters.public static DateConversion toDate(TimeZone timeZone, Locale locale, Date dateIfNull, String stringIfNull, String... dateFormats)
DateConversiontimeZone - the TimeZone of the date to be formattedlocale - the Locale that determines how the date mask should be formatted.dateIfNull - default Date value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.stringIfNull - default String value to be returned when a Date input is null. Used when DateConversion.revert(Date) is invoked.dateFormats - list of acceptable date patterns. The first pattern in this sequence will be used to convert a Date into a String in DateConversion.revert(Date).DateConversion created with the given parameters.public static DateConversion toDate(Locale locale, Date dateIfNull, String stringIfNull, String... dateFormats)
DateConversionlocale - the Locale that determines how the date mask should be formatted.dateIfNull - default Date value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.stringIfNull - default String value to be returned when a Date input is null. Used when DateConversion.revert(Date) is invoked.dateFormats - list of acceptable date patterns. The first pattern in this sequence will be used to convert a Date into a String in DateConversion.revert(Date).DateConversion created with the given parameters.public static DateConversion toDate(Date dateIfNull, String stringIfNull, String... dateFormats)
DateConversiondateIfNull - default Date value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.stringIfNull - default String value to be returned when a Date input is null. Used when DateConversion.revert(Date) is invoked.dateFormats - list of acceptable date patterns. The first pattern in this sequence will be used to convert a Date into a String in DateConversion.revert(Date).DateConversion created with the given parameters.public static CalendarConversion toCalendar(Locale locale, String... dateFormats)
CalendarConversionlocale - the Locale that determines how the date mask should be formatted.dateFormats - list of acceptable date patterns. The first pattern in this sequence will be used to convert a Calendar into a String in CalendarConversion.revert(Calendar).CalendarConversion created with the given parameters.public static CalendarConversion toCalendar(String... dateFormats)
CalendarConversiondateFormats - list of acceptable date patterns. The first pattern in this sequence will be used to convert a Calendar into a String in CalendarConversion.revert(Calendar).CalendarConversion created with the given parameters.public static CalendarConversion toCalendar(Locale locale, Calendar dateIfNull, String... dateFormats)
CalendarConversionlocale - the Locale that determines how the date mask should be formatted.dateIfNull - default Calendar value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.dateFormats - list of acceptable date patterns. The first pattern in this sequence will be used to convert a Calendar into a String in CalendarConversion.revert(Calendar).CalendarConversion created with the given parameters.public static CalendarConversion toCalendar(Calendar dateIfNull, String... dateFormats)
CalendarConversiondateIfNull - default Calendar value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.dateFormats - list of acceptable date patterns. The first pattern in this sequence will be used to convert a Calendar into a String in CalendarConversion.revert(Calendar).CalendarConversion created with the given parameters.public static CalendarConversion toCalendar(Locale locale, Calendar dateIfNull, String stringIfNull, String... dateFormats)
CalendarConversionlocale - the Locale that determines how the date mask should be formatted.dateIfNull - default Calendar value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.stringIfNull - default String value to be returned when a Date input is null. Used when CalendarConversion.revert(Calendar) is invoked.dateFormats - list of acceptable date patterns. The first pattern in this sequence will be used to convert a Calendar into a String in CalendarConversion.revert(Calendar).CalendarConversion created with the given parameters.public static CalendarConversion toCalendar(TimeZone timeZone, Locale locale, Calendar dateIfNull, String stringIfNull, String... dateFormats)
CalendarConversiontimeZone - the TimeZone to be consideredlocale - the Locale that determines how the date mask should be formatted.dateIfNull - default Calendar value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.stringIfNull - default String value to be returned when a Date input is null. Used when CalendarConversion.revert(Calendar) is invoked.dateFormats - list of acceptable date patterns. The first pattern in this sequence will be used to convert a Calendar into a String in CalendarConversion.revert(Calendar).CalendarConversion created with the given parameters.public static CalendarConversion toCalendar(Calendar dateIfNull, String stringIfNull, String... dateFormats)
CalendarConversiondateIfNull - default Calendar value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.stringIfNull - default String value to be returned when a Date input is null. Used when CalendarConversion.revert(Calendar) is invoked.dateFormats - list of acceptable date patterns. The first pattern in this sequence will be used to convert a Calendar into a String in CalendarConversion.revert(Calendar).CalendarConversion created with the given parameters.public static ByteConversion toByte()
ByteConversionByteConversionpublic static ShortConversion toShort()
ShortConversionShortConversionpublic static IntegerConversion toInteger()
IntegerConversionIntegerConversionpublic static LongConversion toLong()
LongConversionLongConversionpublic static BigIntegerConversion toBigInteger()
BigIntegerConversionBigIntegerConversionpublic static FloatConversion toFloat()
FloatConversionFloatConversionpublic static DoubleConversion toDouble()
DoubleConversionDoubleConversionpublic static BigDecimalConversion toBigDecimal()
BigDecimalConversionBigDecimalConversionpublic static NumericConversion<Number> formatToNumber(String... numberFormats)
NumericConversionnumberFormats - list of acceptable numeric patterns. The first pattern in this sequence will be used to convert a Number into a String in NumericConversion.revert(Number).NumericConversion that supports the given number formatspublic static <T extends Number> NumericConversion<T> formatToNumber(Class<T> numberType, String... numberFormats)
NumericConversionT - type of numbernumberType - type of number to be returned. The resulting instance of Number will be cast to the expected type.numberFormats - list of acceptable numeric patterns. The first pattern in this sequence will be used to convert a Number into a String in NumericConversion.revert(Number).NumericConversion that supports the given number formatspublic static FormattedBigDecimalConversion formatToBigDecimal(String... numberFormats)
FormattedBigDecimalConversionnumberFormats - list of acceptable numeric patterns. The first pattern in this sequence will be used to convert a BigDecimal into a String in NumericConversion.revert(Number).FormattedBigDecimalConversion that supports the given number formatspublic static FormattedBigDecimalConversion formatToBigDecimal(BigDecimal defaultValueForNullString, String... numberFormats)
FormattedBigDecimalConversiondefaultValueForNullString - default BigDecimal to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.numberFormats - list of acceptable numeric patterns. The first pattern in this sequence will be used to convert a BigDecimal into a String in NumericConversion.revert(Number).FormattedBigDecimalConversion that supports the given number formatspublic static FormattedBigDecimalConversion formatToBigDecimal(BigDecimal defaultValueForNullString, String stringIfNull, String... numberFormats)
FormattedBigDecimalConversiondefaultValueForNullString - default BigDecimal to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.stringIfNull - default String value to be returned when a BigDecimal input is null. Used when FormattedBigDecimalConversion#revert(BigDecimal) is invoked.numberFormats - list of acceptable numeric patterns. The first pattern in this sequence will be used to convert a BigDecimal into a String in NumericConversion.revert(Number).FormattedBigDecimalConversion that supports the given number formatspublic static BooleanConversion toBoolean(Boolean defaultValueForNullString, String defaultValueForNullBoolean, String[] valuesForTrue, String[] valuesForFalse)
BooleanConversiondefaultValueForNullString - default Boolean value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.defaultValueForNullBoolean - default String value to be returned when a Boolean input is null. Used when BooleanConversion.revert(Boolean) is invoked.valuesForTrue - Strings that identify the boolean value true. The first element will be returned when executing BooleanConversion.revert(true)valuesForFalse - Strings that identify the boolean value false. The first element will be returned when executing BooleanConversion.revert(false)BooleanConversion with support for multiple representations of true and falsepublic static BooleanConversion toBoolean(Boolean defaultValueForNullString, String defaultValueForNullBoolean, String valueForTrue, String valueForFalse)
BooleanConversiondefaultValueForNullString - default Boolean value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.defaultValueForNullBoolean - default String value to be returned when a Boolean input is null. Used when BooleanConversion.revert(Boolean) is invoked.valueForTrue - String that identify the boolean value true.valueForFalse - String that identify the boolean value false.BooleanConversion with support for multiple representations of true and falsepublic static BooleanConversion toBoolean(String[] valuesForTrue, String[] valuesForFalse)
BooleanConversionvaluesForTrue - Strings that identify the boolean value true. The first element will be returned when executing BooleanConversion.revert(true)valuesForFalse - Strings that identify the boolean value false. The first element will be returned when executing BooleanConversion.revert(false)BooleanConversion with support for multiple representations of true and falsepublic static BooleanConversion toBoolean()
BooleanConversion that converts the string "true" to true, and the String "false" to false.BooleanConversion with support for multiple representations of true and falsepublic static BooleanConversion toBoolean(String valueForTrue, String valueForFalse)
BooleanConversionvalueForTrue - String that identifies the boolean value true.valueForFalse - String that identifies the boolean value false.BooleanConversion with support for multiple representations of true and falsepublic static CharacterConversion toChar()
CharacterConversionCharacterConversionpublic static CharacterConversion toChar(Character defaultValueForNullString, String defaultValueForNullChar)
CharacterConversiondefaultValueForNullString - default Character value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.defaultValueForNullChar - default String value to be returned when a Character input is null. Used when CharacterConversion#revert(Character) is invoked.CharacterConversionpublic static CharacterConversion toChar(Character defaultValueForNullString)
CharacterConversiondefaultValueForNullString - default Character value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.CharacterConversionpublic static <T extends Enum<T>> EnumConversion<T> toEnum(Class<T> enumType)
EnumConversionT - the enum typeenumType - the enumeration type to be converted from/to StringEnumConversionpublic static <T extends Enum<T>> EnumConversion<T> toEnum(Class<T> enumType, EnumSelector... selectors)
EnumConversionT - the enum typeenumType - the enumeration type to be converted from/to Stringselectors - the selection elements of the enumeration to use for matching Strings.EnumConversionpublic static <T extends Enum<T>> EnumConversion<T> toEnum(Class<T> enumType, String customEnumElement, EnumSelector... selectors)
EnumConversionT - the enum typeenumType - the enumeration type to be converted from/to StringcustomEnumElement - name of custom element of the enumeration (attribute or method) whose values should be used to match equivalent Strings.selectors - the selection elements of the enumeration to use for matching Strings.EnumConversionpublic static <T extends Enum<T>> EnumConversion<T> toEnum(Class<T> enumType, T valueIfStringIsNull, String valueIfEnumIsNull, String customEnumElement, EnumSelector... selectors)
EnumConversionT - the enum typeenumType - the enumeration type to be converted from/to StringvalueIfStringIsNull - the default enumeration constant to use if the input String is nullvalueIfEnumIsNull - the default String value to use if the input enum constant is nullcustomEnumElement - name of custom element of the enumeration (attribute or method) whose values should be used to match equivalent Strings.selectors - the selection elements of the enumeration to use for matching Strings.EnumConversionpublic static FormattedDateConversion toFormattedDate(String pattern)
FormattedDateConversionpattern - Date mask to be be used to convert a date object (i.e. Date or Calendar) into a String.FormattedDateConversion configured with the given parameterspublic static FormattedDateConversion toFormattedDate(String pattern, String valueIfObjectIsNull)
FormattedDateConversionpattern - Date mask to be be used to convert a date object (i.e. Date or Calendar) into a String.valueIfObjectIsNull - Default string value to be returned when the input object is null.FormattedDateConversion configured with the given parameterspublic static FormattedDateConversion toFormattedDate(String pattern, Locale locale)
FormattedDateConversionpattern - Date mask to be be used to convert a date object (i.e. Date or Calendar) into a String.locale - The Locale that determines how the date pattern should be formatted.FormattedDateConversion configured with the given parameterspublic static FormattedDateConversion toFormattedDate(String pattern, Locale locale, String valueIfObjectIsNull)
FormattedDateConversionpattern - Date mask to be be used to convert a date object (i.e. Date or Calendar) into a String.locale - The Locale that determines how the date pattern should be formatted.valueIfObjectIsNull - Default string value to be returned when the input object is null.FormattedDateConversion configured with the given parameterspublic static ValidatedConversion notNull()
ValidatedConversion that doesn't allow null valuespublic static ValidatedConversion notBlank()
ValidatedConversion that doesn't allow null or blank valuespublic static ValidatedConversion notBlank(String regexToMatch)
ValidatedConversion that verifies the format of a given valueregexToMatch - regular expression to match and ensure the value has a given formatpublic static ValidatedConversion validate(boolean nullable, boolean allowBlanks)
ValidatedConversion that checks for nulls or blank values.nullable - flag to indicate whether values can be nullallowBlanks - flag to indicate whether values can be blankValidatedConversion configured with the given parameterspublic static ValidatedConversion validate(boolean nullable, boolean allowBlanks, String[] oneOf, String[] noneOf)
ValidatedConversion to validate values of a recordnullable - flag to indicate whether values can be nullallowBlanks - flag to indicate whether values can be blankoneOf - list of accepted values.noneOf - list of unacceptable valuesValidatedConversion configured with the given parameterspublic static ValidatedConversion validate(boolean nullable, boolean allowBlanks, String regexToMatch)
ValidatedConversion that checks for nulls or blank values.nullable - flag to indicate whether values can be nullallowBlanks - flag to indicate whether values can be blankregexToMatch - regular expression to match and ensure the value has a given formatValidatedConversion configured with the given parameterspublic static ValidatedConversion validate(boolean nullable, boolean allowBlanks, String[] oneOf, String[] noneOf, String regexToMatch)
ValidatedConversion to validate values of a recordnullable - flag to indicate whether values can be nullallowBlanks - flag to indicate whether values can be blankoneOf - list of accepted values.noneOf - list of unacceptable valuesregexToMatch - regular expression to match and ensure the value has a given formatValidatedConversion configured with the given parameterspublic static ValidatedConversion oneOf(String... oneOf)
ValidatedConversion to validate values of a record
Nulls and blanks are not be allowed by default.oneOf - list of accepted values.ValidatedConversion configured with the given parameterspublic static ValidatedConversion noneOf(String... noneOf)
ValidatedConversion to validate values of a record
Nulls and blanks are not be allowed by default.noneOf - list of values that are not allowed.ValidatedConversion configured with the given parametersCopyright © 2021 Univocity Software Pty Ltd. All rights reserved.