org.enhydra.apache.xerces.validators.datatype
Class FloatDatatypeValidator

java.lang.Object
  |
  +--org.enhydra.apache.xerces.validators.datatype.AbstractDatatypeValidator
        |
        +--org.enhydra.apache.xerces.validators.datatype.AbstractNumericFacetValidator
              |
              +--org.enhydra.apache.xerces.validators.datatype.AbstractNumericValidator
                    |
                    +--org.enhydra.apache.xerces.validators.datatype.FloatDatatypeValidator
All Implemented Interfaces:
java.lang.Cloneable, DatatypeValidator

public class FloatDatatypeValidator
extends AbstractNumericValidator

Version:
$Id: FloatDatatypeValidator.java,v 1.2 2003/03/08 19:25:07 davidli Exp $
Author:
Elena Litani, Ted Leung, Jeffrey Rodriguez, Mark Swinkles - List Validation refactoring

Field Summary
 
Fields inherited from class org.enhydra.apache.xerces.validators.datatype.AbstractNumericFacetValidator
fEnumeration, fMaxExclusive, fMaxInclusive, fMinExclusive, fMinInclusive, INDETERMINATE
 
Fields inherited from class org.enhydra.apache.xerces.validators.datatype.AbstractDatatypeValidator
fBaseValidator, fFacetsDefined, fFlags, fLocale, fMessageProvider, fPattern, fRegex
 
Fields inherited from interface org.enhydra.apache.xerces.validators.datatype.DatatypeValidator
COLLAPSE, FACET_DURATION, FACET_ENCODING, FACET_ENUMERATION, FACET_FIXED, FACET_FRACTIONDIGITS, FACET_LENGTH, FACET_MAXEXCLUSIVE, FACET_MAXINCLUSIVE, FACET_MAXLENGTH, FACET_MINEXCLUSIVE, FACET_MININCLUSIVE, FACET_MINLENGTH, FACET_PATTERN, FACET_PERIOD, FACET_TOTALDIGITS, FACET_WHITESPACE, PRESERVE, REPLACE
 
Constructor Summary
FloatDatatypeValidator()
           
FloatDatatypeValidator(DatatypeValidator base, java.util.Hashtable facets, boolean derivedByList)
           
 
Method Summary
protected  void assignAdditionalFacets(java.lang.String key, java.util.Hashtable facets)
           
protected  void checkContent(java.lang.String content, java.lang.Object state, java.util.Vector enumeration, boolean asBase)
          validate if the content is valid against base datatype and facets (if any) this function might be called directly from UnionDatatype or ListDatatype
 int compare(java.lang.String value1, java.lang.String value2)
          Compares content in the Domain value vs.
protected  int compareValues(java.lang.Object value1, java.lang.Object value2)
           
protected  int getInvalidFacetMsg()
           
protected  java.lang.String getMaxExclusive(boolean isBase)
           
protected  java.lang.String getMaxInclusive(boolean isBase)
           
protected  java.lang.String getMinExclusive(boolean isBase)
           
protected  java.lang.String getMinInclusive(boolean isBase)
           
protected  void setEnumeration(java.util.Vector enumeration)
           
protected  void setMaxExclusive(java.lang.String value)
           
protected  void setMaxInclusive(java.lang.String value)
           
protected  void setMinExclusive(java.lang.String value)
           
protected  void setMinInclusive(java.lang.String value)
           
 
Methods inherited from class org.enhydra.apache.xerces.validators.datatype.AbstractNumericValidator
boundsCheck, checkContentEnum, clone, validate
 
Methods inherited from class org.enhydra.apache.xerces.validators.datatype.AbstractNumericFacetValidator
checkBaseFacetConstraints, checkFacetConstraints, inheritAdditionalFacets, initializeValues
 
Methods inherited from class org.enhydra.apache.xerces.validators.datatype.AbstractDatatypeValidator
getBaseValidator, getErrorString, getWSFacet, setLocale
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FloatDatatypeValidator

public FloatDatatypeValidator()
                       throws InvalidDatatypeFacetException

FloatDatatypeValidator

public FloatDatatypeValidator(DatatypeValidator base,
                              java.util.Hashtable facets,
                              boolean derivedByList)
                       throws InvalidDatatypeFacetException
Method Detail

compare

public int compare(java.lang.String value1,
                   java.lang.String value2)
Description copied from interface: DatatypeValidator
Compares content in the Domain value vs. lexical value. e.g. If type is a float then 1.0 may be equivalent to 1 even tough both are lexically different.

Parameters:
value1 -
Returns:

assignAdditionalFacets

protected void assignAdditionalFacets(java.lang.String key,
                                      java.util.Hashtable facets)
                               throws InvalidDatatypeFacetException
Specified by:
assignAdditionalFacets in class AbstractNumericFacetValidator
InvalidDatatypeFacetException

compareValues

protected int compareValues(java.lang.Object value1,
                            java.lang.Object value2)
Specified by:
compareValues in class AbstractNumericFacetValidator

setMaxInclusive

protected void setMaxInclusive(java.lang.String value)
Specified by:
setMaxInclusive in class AbstractNumericFacetValidator

setMinInclusive

protected void setMinInclusive(java.lang.String value)
Specified by:
setMinInclusive in class AbstractNumericFacetValidator

setMaxExclusive

protected void setMaxExclusive(java.lang.String value)
Specified by:
setMaxExclusive in class AbstractNumericFacetValidator

setMinExclusive

protected void setMinExclusive(java.lang.String value)
Specified by:
setMinExclusive in class AbstractNumericFacetValidator

setEnumeration

protected void setEnumeration(java.util.Vector enumeration)
                       throws InvalidDatatypeValueException
Specified by:
setEnumeration in class AbstractNumericFacetValidator
InvalidDatatypeValueException

getMaxInclusive

protected java.lang.String getMaxInclusive(boolean isBase)
Specified by:
getMaxInclusive in class AbstractNumericFacetValidator

getMinInclusive

protected java.lang.String getMinInclusive(boolean isBase)
Specified by:
getMinInclusive in class AbstractNumericFacetValidator

getMaxExclusive

protected java.lang.String getMaxExclusive(boolean isBase)
Specified by:
getMaxExclusive in class AbstractNumericFacetValidator

getMinExclusive

protected java.lang.String getMinExclusive(boolean isBase)
Specified by:
getMinExclusive in class AbstractNumericFacetValidator

checkContent

protected void checkContent(java.lang.String content,
                            java.lang.Object state,
                            java.util.Vector enumeration,
                            boolean asBase)
                     throws InvalidDatatypeValueException
validate if the content is valid against base datatype and facets (if any) this function might be called directly from UnionDatatype or ListDatatype

Specified by:
checkContent in class AbstractNumericValidator
Parameters:
content - A string containing the content to be validated
enumeration - A vector with enumeration strings
Throws:
throws - InvalidDatatypeException if the content is is not a W3C float type;
throws - InvalidDatatypeFacetException if enumeration is not float
InvalidDatatypeValueException

getInvalidFacetMsg

protected int getInvalidFacetMsg()


Copyright © 1999 The Apache Software Foundation. All Rights reserved.