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

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

Introduction

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

The text is from its open source code.

Constructor

BigDecimalValidator()
Construct a strict instance.
BigDecimalValidator(boolean strict)

Construct an instance with the specified strict setting.

Method

Stringformat(Object value, String pattern)

Format an object into a String using the specified pattern.

BigDecimalValidatorgetInstance()
Return a singleton instance of this validator.
booleanisInRange(BigDecimal value, double min, double max)
Check if the value is within a specified range.
booleanisValid(String value, String pattern)

Validate using the specified pattern.

booleanisValid(String value)

Validate using the default Locale.

BigDecimalvalidate(String value, String pattern)

Validate/convert a BigDecimal using the specified pattern.

BigDecimalvalidate(String value, Locale locale)

Validate/convert a BigDecimal using the specified Locale.