Public Member Functions

org.exolab.castor.xml.validators.LongValidator Class Reference

Inheritance diagram for org.exolab.castor.xml.validators.LongValidator:
org.exolab.castor.xml.validators.PatternValidator org.exolab.castor.xml.TypeValidator

List of all members.

Public Member Functions

 LongValidator ()
void clearFixed ()
void clearMax ()
void clearMin ()
Long getFixed ()
Long getMaxInclusive ()
Long getMinInclusive ()
boolean hasFixed ()
void setFixed (long fixedValue)
void setMinExclusive (long minValue)
void setMinInclusive (long minValue)
void setMaxExclusive (long maxValue)
void setMaxInclusive (long maxValue)
void validate (long value, ValidationContext context) throws ValidationException
void validate (Object object) throws ValidationException
void validate (Object object, ValidationContext context) throws ValidationException

Detailed Description

The Integer Validation class. This class handles validation for the integer type as well as all integer derived types such as positive-integer and negative-integer

Author:
Keith Visco
Version:
Revision:
1.2
Date:
2003/03/03 09:57:21

Constructor & Destructor Documentation

org.exolab.castor.xml.validators.LongValidator.LongValidator (  ) 

Creates a new LongValidator with no restrictions


Member Function Documentation

void org.exolab.castor.xml.validators.LongValidator.clearFixed (  ) 

Clears the fixed value for this LongValidator

void org.exolab.castor.xml.validators.LongValidator.clearMax (  ) 

Clears the maximum value for this LongValidator

void org.exolab.castor.xml.validators.LongValidator.clearMin (  ) 

Clears the minimum value for this LongValidator

Long org.exolab.castor.xml.validators.LongValidator.getFixed (  ) 

Returns the fixed value that longs validated with this validator must be equal to. A null value is returned if no fixed value has been specified.

Returns:
the fixed value to validate against.
Long org.exolab.castor.xml.validators.LongValidator.getMaxInclusive (  ) 

Returns the maximum value that longs validated with this validator must be equal to or less than. A null value is returned if no maximum value has been specified.

Returns:
the maximum inclusive value to validate against.
Long org.exolab.castor.xml.validators.LongValidator.getMinInclusive (  ) 

Returns the minimum value that longs validated with this validator must be equal to or greater than. A null value is returned if no minimum value has been specified.

Returns:
the minimum inclusive value to validate against.
boolean org.exolab.castor.xml.validators.LongValidator.hasFixed (  ) 

Returns true if a fixed value, to validate against, has been set.

Returns:
true if a fixed value has been set.
void org.exolab.castor.xml.validators.LongValidator.setFixed ( long  fixedValue  ) 

Sets the fixed value that integers validated with this validated must be equal to

Parameters:
fixedValue the fixed value that a long validated with this validator must be equal to.
NOTE: Using Fixed values takes preceedence over using max and mins, and is really the same as setting both max-inclusive and min-inclusive to the same value
void org.exolab.castor.xml.validators.LongValidator.setMaxExclusive ( long  maxValue  ) 

Sets the maximum value that longs validated with this validator must be less than

Parameters:
maxValue the maximum value that a long validated with this validator must be less than
void org.exolab.castor.xml.validators.LongValidator.setMaxInclusive ( long  maxValue  ) 

Sets the maximum value that longs validated with this validator are allowed to be

Parameters:
maxValue the maximum value that a long validated with this validator may be
void org.exolab.castor.xml.validators.LongValidator.setMinExclusive ( long  minValue  ) 

Sets the minimum value that longs validated with this validator must be greater than

Parameters:
minValue the minimum value that a long validated with this validator must be greater than
void org.exolab.castor.xml.validators.LongValidator.setMinInclusive ( long  minValue  ) 

Sets the minimum value that longs validated with this validator are allowed to be

Parameters:
minValue the minimum value that a long validated with this validator may be
void org.exolab.castor.xml.validators.LongValidator.validate ( Object  object,
ValidationContext  context 
) throws ValidationException

Validates the given Object

Parameters:
object the Object to validate
context the ValidationContext

Implements org.exolab.castor.xml.TypeValidator.

References org.exolab.castor.xml.validators.LongValidator.validate().

void org.exolab.castor.xml.validators.LongValidator.validate ( Object  object  )  throws ValidationException

Validates the given Object

Parameters:
object the Object to validate

References org.exolab.castor.xml.validators.LongValidator.validate().

void org.exolab.castor.xml.validators.LongValidator.validate ( long  value,
ValidationContext  context 
) throws ValidationException

The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Enumerations Properties