Package | Description |
---|---|
com.univocity.parsers.conversions |
Modifier and Type | Method and Description |
---|---|
static ValidatedConversion |
Conversions.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 |
Conversions.notBlank()
Returns a
ValidatedConversion that doesn't allow null or blank values |
static ValidatedConversion |
Conversions.notBlank(String regexToMatch)
Returns a
ValidatedConversion that verifies the format of a given value |
static ValidatedConversion |
Conversions.notNull()
Returns a
ValidatedConversion that doesn't allow null values |
static ValidatedConversion |
Conversions.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 ValidatedConversion |
Conversions.validate(boolean nullable,
boolean allowBlanks)
Returns a
ValidatedConversion that checks for nulls or blank values. |
static ValidatedConversion |
Conversions.validate(boolean nullable,
boolean allowBlanks,
String regexToMatch)
Returns a
ValidatedConversion that checks for nulls or blank values. |
static ValidatedConversion |
Conversions.validate(boolean nullable,
boolean allowBlanks,
String[] oneOf,
String[] noneOf)
Returns a new instance of
ValidatedConversion to validate values of a record |
static ValidatedConversion |
Conversions.validate(boolean nullable,
boolean allowBlanks,
String[] oneOf,
String[] noneOf,
String regexToMatch)
Returns a new instance of
ValidatedConversion to validate values of a record |
Copyright © 2024 Univocity Software Pty Ltd. All rights reserved.