Class NotNameClass

  • All Implemented Interfaces:
    Serializable

    public final class NotNameClass
    extends NameClass
    NameClass that acts a not operator. Actually, A NotNameClass can be represented by using a DifferenceNameClass and AnyNameClass.
    Author:
    Kohsuke KAWAGUCHI
    See Also:
    Serialized Form
    • Constructor Detail

      • NotNameClass

        public NotNameClass​(NameClass child)
    • Method Detail

      • accepts

        public boolean accepts​(String namespaceURI,
                               String localName)
        accepts a name if it is not accepted by the child name class.
        Specified by:
        accepts in class NameClass
        Parameters:
        namespaceURI - namespace URI to be tested. If this value equals to NAMESPACE_WILDCARD, implementation must assume that valid namespace is specified. this twist will be used for error diagnosis.
        localName - local part to be tested. As with namespaceURI, LOCALNAME_WILDCARD will acts as a wild card.
        Returns:
        true if the pair is accepted, false otherwise.