BEA Systems, Inc.

WebLogic Server 6.1 API Reference

weblogic.apache.xerces.validators.datatype
Class DecimalDatatypeValidator

java.lang.Object
  |
  +--weblogic.apache.xerces.validators.datatype.AbstractDatatypeValidator
        |
        +--weblogic.apache.xerces.validators.datatype.DecimalDatatypeValidator

public class DecimalDatatypeValidator
extends AbstractDatatypeValidator

DecimalValidator validates that content satisfies the W3C XML Datatype for decimal

This class is based on an implementation from the Apache XML Project. In future releases the XML parser, XSLT processor, and associated classes will likely be updated to be based on a later version of the Apache implementations. Since Apache does not guarantee backwards compatibility between versions of their software, we cannot guarantee backwards compatibility of any of the classes contained in the weblogic.apache package or sub-packages.

Version:
$Id: DecimalDatatypeValidator.java,v 1.17 2001/02/21 22:24:35 elena Exp $
Author:
Elena Litani, Ted Leung, Jeffrey Rodriguez, Mark Swinkles - List Validation refactoring

Constructor Summary
DecimalDatatypeValidator()
           
DecimalDatatypeValidator(DatatypeValidator base, java.util.Hashtable facets, boolean derivedByList)
           
 
Method Summary
 void boundsCheck(java.math.BigDecimal d)
           
protected  void checkContentEnum(java.lang.String content, java.lang.Object state, java.util.Vector enumeration)
          validate if the content is valid against base datatype and facets (if any) this function might be called directly from UnionDatatype or ListDatatype
 java.lang.Object clone()
          Returns a copy of this object.
 int compare(java.lang.String value1, java.lang.String value2)
           
 void setLocale(java.util.Locale locale)
          set the locate to be used for error messages
 java.lang.Object validate(java.lang.String content, java.lang.Object state)
          validate that a string matches the decimal datatype validate returns true or false depending on whether the string content is a W3C decimal type.
 
Methods inherited from class weblogic.apache.xerces.validators.datatype.AbstractDatatypeValidator
getFacets, getWSFacet
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DecimalDatatypeValidator

public DecimalDatatypeValidator()
                         throws InvalidDatatypeFacetException

DecimalDatatypeValidator

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

validate

public java.lang.Object validate(java.lang.String content,
                                 java.lang.Object state)
                          throws InvalidDatatypeValueException
validate that a string matches the decimal datatype validate returns true or false depending on whether the string content is a W3C decimal type.

Parameters:
content - A string containing the content to be validated cd
Throws:
throws - InvalidDatatypeException if the content is is not a W3C decimal type
Overrides:
validate in class AbstractDatatypeValidator

checkContentEnum

protected void checkContentEnum(java.lang.String content,
                                java.lang.Object state,
                                java.util.Vector enumeration)
                         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

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 decimal type;
throws - InvalidDatatypeFacetException if enumeration is not BigDecimal

boundsCheck

public void boundsCheck(java.math.BigDecimal d)
                 throws InvalidDatatypeValueException

setLocale

public void setLocale(java.util.Locale locale)
set the locate to be used for error messages

clone

public java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Returns a copy of this object.

Overrides:
clone in class AbstractDatatypeValidator

compare

public int compare(java.lang.String value1,
                   java.lang.String value2)

Overrides:
compare in class AbstractDatatypeValidator

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs61

WebLogic classes and methods that do not appear in this reference are not public and are not supported.