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

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

Introduction

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

The text is from its open source code.

Constructor

DoubleValidator()
Construct a strict instance.

Method

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

Validate using the default Locale.

booleanmaxValue(double value, double max)
Check if the value is less than or equal to a maximum.
booleanmaxValue(Double value, double max)
Check if the value is less than or equal to a maximum.
booleanminValue(double value, double min)
Check if the value is greater than or equal to a minimum.
booleanminValue(Double value, double min)
Check if the value is greater than or equal to a minimum.
Doublevalidate(String value)

Validate/convert a Double using the default Locale.

Doublevalidate(String value, String pattern, Locale locale)

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