Package com.axemble.vdoc.sdk.interfaces
Interface IValidators
public interface IValidators
Validators interface
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Check if the String is alphanumericstatic final String
Check if the string is capitalizestatic final String
Check if the string contains the parameterstatic final String
Check the email syntaxstatic final String
Check if the string ends with the parameterstatic final String
Check if Object is a floatstatic final String
Check if Object is a integerstatic final String
Check if the string is lowercasestatic final String
Check the maximum number of charactersstatic final String
Check the minimum number of charactersstatic final String
Check if Object is a numberstatic final String
Check the regexpstatic final String
Check if the object is not emptystatic final String
Check if the string starts with the parameterstatic final String
Check the sysname syntaxstatic final String
Check 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:
-