static ValidatedConversion |
Conversions.noneOf(java.lang.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() |
|
static ValidatedConversion |
Conversions.notBlank(java.lang.String regexToMatch) |
|
static ValidatedConversion |
Conversions.notNull() |
|
static ValidatedConversion |
Conversions.oneOf(java.lang.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) |
|
static ValidatedConversion |
Conversions.validate(boolean nullable,
boolean allowBlanks,
java.lang.String regexToMatch) |
|
static ValidatedConversion |
Conversions.validate(boolean nullable,
boolean allowBlanks,
java.lang.String[] oneOf,
java.lang.String[] noneOf) |
|
static ValidatedConversion |
Conversions.validate(boolean nullable,
boolean allowBlanks,
java.lang.String[] oneOf,
java.lang.String[] noneOf,
java.lang.String regexToMatch) |
|