Package com.axemble.vdoc.sdk.interfaces
Interface IValidators
public interface IValidators
Validators interface
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringCheck if the String is alphanumericstatic final StringCheck if the string is capitalizestatic final StringCheck if the string contains the parameterstatic final StringCheck the email syntaxstatic final StringCheck if the string ends with the parameterstatic final StringCheck if Object is a floatstatic final StringCheck if Object is a integerstatic final StringCheck if the string is lowercasestatic final StringCheck the maximum number of charactersstatic final StringCheck the minimum number of charactersstatic final StringCheck if Object is a numberstatic final StringCheck the regexpstatic final StringCheck if the object is not emptystatic final StringCheck if the string starts with the parameterstatic final StringCheck the sysname syntaxstatic final StringCheck if the string is uppercase
-
Field Details
-
VALIDATOR_REQUIRED
Check if the object is not empty- See Also:
-
VALIDATOR_ALPHANUMERIC
Check if the String is alphanumeric- See Also:
-
VALIDATOR_SYSNAME
Check the sysname syntax- See Also:
-
VALIDATOR_EMAIL
Check the email syntax- See Also:
-
VALIDATOR_MINCHARS
Check the minimum number of characters- See Also:
-
VALIDATOR_MAXCHARS
Check the maximum number of characters- See Also:
-
VALIDATOR_LOWERCASE
Check if the string is lowercase- See Also:
-
VALIDATOR_UPPERCASE
Check if the string is uppercase- See Also:
-
VALIDATOR_CAPITALIZE
Check if the string is capitalize- See Also:
-
VALIDATOR_STARTSWITH
Check if the string starts with the parameter- See Also:
-
VALIDATOR_ENDSWITH
Check if the string ends with the parameter- See Also:
-
VALIDATOR_CONTAINS
Check if the string contains the parameter- See Also:
-
VALIDATOR_REGEXP
Check the regexp- See Also:
-
VALIDATOR_FLOAT
Check if Object is a float- See Also:
-
VALIDATOR_NUMBER
Check if Object is a number- See Also:
-
VALIDATOR_INTEGER
Check if Object is a integer- See Also:
-