| Interface | Description |
|---|---|
| PatternVerifier.Adjustable<T> |
An interface that can be implemented by the pattern verifier to support the increase or decrease of the values by
steps.
|
| PatternVerifier.AutoCompletion |
An interface that can be implemented by the pattern verifier to support auto-completion.
|
| PatternVerifier.Enums<T> |
An interface that can be implemented by the pattern verifier to support enum types or an array of values.
|
| PatternVerifier.Formatter<T> |
An interface that can be implemented by the pattern verifier if the verifier knows how to format the value for
that group.
|
| PatternVerifier.Length |
An interface that can be implemented by the pattern verifier to limit the length of the text within the minLength
and the maxLength.
|
| PatternVerifier.Parser<T> |
An interface that can be implemented by the pattern verifier if the verifier knows how to parse the text and
return the value for that group.
|
| PatternVerifier.Range<T> |
An interface that can be implemented by the pattern verifier to limit the value of the text to be in the range.
|
| PatternVerifier.Value<T,TV> |
An interface that can be implemented by the pattern verifier to hold the value of the whole field.
|
| Class | Description |
|---|---|
| CalendarFieldPatternVerifier |
BaseCalendarFieldPatternVerifier is an abstract implementation of the pattern verifier for the Date
type. |
| DateFieldPatternVerifier |
BaseCalendarFieldPatternVerifier is an abstract implementation of the pattern verifier for the Date
type. |
| FractionDigitsPatternVerifier<T> |
A pattern verifier that verifies the digits that is the fraction digits (after the floating point) of the whole
number.
|
| HexRangePatternVerifier |
A special verifier for an integer so that it is in the specified range.
|
| IntegerCalendarFieldPatternVerifier |
A special verifier for the Calendar field that has an integer type.
|
| IntegerDateFieldPatternVerifier |
A special verifier for the Calendar field that has an integer type.
|
| IntegerDigitsPatternVerifier<T> |
A pattern verifier that verifies the digits that is the integer digits (before the floating point) of the whole
number.
|
| IntegerRangePatternVerifier |
A special verifier for an integer so that it is in the specified range.
|
| IntegerTemporalPatternVerifier |
A special verifier for the Calendar field that has an integer type.
|
| IntegerTemporalPatternVerifierNotAdjustable |
A special verifier for the Calendar field that has an integer type.
|
| LongTemporalPatternVerifier |
A special verifier for the Calendar field that has an integer type.
|
| LongTemporalPatternVerifierNotAdjustable |
A special verifier for the Calendar field that has an integer type.
|
| NumberRangePatternVerifier |
A pattern verifier that verifies the input as a number to make sure it is in the range.
|
| NumberValuePatternVerifier<T> |
A pattern verifier that verifies the input as a number to make sure it is in the range.
|
| PatternVerifier<T> | |
| PatternVerifierUtils |
A util class which has several methods to initialize predefined pattern verifiers.
|
| RangePatternVerifier<T> |
A special verifier for an integer so that it is in the specified range.
|
| StringCalendarFieldPatternVerifier |
A pattern verifier that verifies the Calendar field that is of String type.
|
| StringDateFieldPatternVerifier |
A pattern verifier that verifies the Calendar field that is of String type.
|
| StringValuesPatternVerifier<T> |
A special verifier that restricts the input string to be in a String array.
|
| TemporalPatternVerifier |
BaseCalendarFieldPatternVerifier is an abstract implementation of the pattern verifier for the Date
type. |
| ValuesPatternVerifier<S,T> |
A special verifier that restricts the input string to be in a String array.
|