Predefined Checkers
Below you find an overview describing all of the predefined checkers from the Calyxo Forms component. All of them implement the de.odysseus.calyxo.forms.Checker interface and can be found in the de.odysseus.calyxo.forms.check package.
| Name | Class | Description |
| notNull | NotNullChecker | Accepts any input different from null. It has no properties. |
| length | LengthChecker |
Checks the length of a string to be in the range specified
by its properties, which are:
|
| el | ELChecker |
Checks that a given EL expression evaluates to true.
The expression refers to the value via the variable property
(other variables, which are resolved as usual are
requestScope, sessionScope,
moduleScope, applicationScope,
param and moduleContext).
Property:
|
| interval | RangeChecker |
Checks a numerical value to be in the range specified
by its properties, which are:
|
| less | RangeChecker |
Checks a numerical value to be less than the specified
property value:
|
| most | RangeChecker |
Checks a numerical value to be less than or equal to the
specified property value:
|
| greater | RangeChecker |
Checks a numerical value to be greater than the specified
property value:
|
| least | RangeChecker |
Checks a numerical value to be greater than or equal to the
specified property value:
|


