Java org.apache.commons.validator.routines IntegerValidator fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.validator.routines IntegerValidator fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.validator.routines IntegerValidator.

The text is from its open source code.

Constructor

IntegerValidator()
Construct a strict instance.

Method

IntegerValidatorgetInstance()
Return a singleton instance of this validator.
booleanisValid(String value)

Validate using the default Locale.

booleanmaxValue(int value, int max)
Check if the value is less than or equal to a maximum.
booleanmaxValue(Integer value, int max)
Check if the value is less than or equal to a maximum.
booleanminValue(int value, int min)
Check if the value is greater than or equal to a minimum.
booleanminValue(Integer value, int min)
Check if the value is greater than or equal to a minimum.
Integervalidate(String value, String pattern)

Validate/convert an Integer using the specified pattern.

Integervalidate(String value, Locale locale)

Validate/convert an Integer using the specified Locale.

Integervalidate(String value)

Validate/convert an Integer using the default Locale.

Integervalidate(String value, String pattern, Locale locale)

Validate/convert a Integer using the specified pattern and/ or Locale.