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

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

Introduction

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

The text is from its open source code.

Method

LongValidatorgetInstance()
Return a singleton instance of this validator.
booleanmaxValue(long value, long max)
Check if the value is less than or equal to a maximum.
booleanmaxValue(Long value, long max)
Check if the value is less than or equal to a maximum.
booleanminValue(long value, long min)
Check if the value is greater than or equal to a minimum.
booleanminValue(Long value, long min)
Check if the value is greater than or equal to a minimum.
Longvalidate(String value, String pattern, Locale locale)

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