FileDocCategorySizeDatePackage
XML11NMTOKENDatatypeValidator.javaAPI DocJava SE 6 API2019Tue Jun 10 00:22:42 BST 2008com.sun.org.apache.xerces.internal.impl.dv.dtd

XML11NMTOKENDatatypeValidator

public class XML11NMTOKENDatatypeValidator extends NMTOKENDatatypeValidator
NMTOKEN datatype validator for NMTokens from XML 1.1.
xerces.internal
author
Jeffrey Rodriguez, IBM
author
Sandy Gao, IBM
author
Neil Graham, IBM
version
$Id: XML11NMTOKENDatatypeValidator.java,v 1.2.6.1 2005/09/09 07:19:19 neerajbj Exp $

Fields Summary
Constructors Summary
public XML11NMTOKENDatatypeValidator()

        super();
    
Methods Summary
public voidvalidate(java.lang.String content, com.sun.org.apache.xerces.internal.impl.dv.ValidationContext context)
Checks that "content" string is valid NMTOKEN value. If invalid a Datatype validation exception is thrown.

param
content the string value that needs to be validated
param
context the validation context
throws
InvalidDatatypeException if the content is invalid according to the rules for the validators
see
InvalidDatatypeValueException

        if (!XML11Char.isXML11ValidNmtoken(content)) {
           throw new InvalidDatatypeValueException("NMTOKENInvalid", new Object[]{content});
       }