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

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

Introduction

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

The text is from its open source code.

Constructor

FloatValidator()
Construct a strict instance.

Method

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

Validate using the default Locale.

booleanmaxValue(float value, float max)
Check if the value is less than or equal to a maximum.
booleanmaxValue(Float value, float max)
Check if the value is less than or equal to a maximum.
booleanminValue(float value, float min)
Check if the value is greater than or equal to a minimum.
booleanminValue(Float value, float min)
Check if the value is greater than or equal to a minimum.
Floatvalidate(String value)

Validate/convert a Float using the default Locale.

Floatvalidate(String value, String pattern, Locale locale)

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