Interface AttributesEx

  • All Superinterfaces:
    org.xml.sax.Attributes
    All Known Implementing Classes:
    AttributesExImpl

    public interface AttributesEx
    extends org.xml.sax.Attributes
    Attributes extension that allows attribute values to be exposed as CharSequence.

    All namespace URIs and local names are assumed to be interned.

    Author:
    Kohsuke Kawaguchi
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.CharSequence getData​(int idx)
      The same as Attributes.getValue(int)
      java.lang.CharSequence getData​(java.lang.String nsUri, java.lang.String localName)
      The same as Attributes.getValue(String,String)
      • Methods inherited from interface org.xml.sax.Attributes

        getIndex, getIndex, getLength, getLocalName, getQName, getType, getType, getType, getURI, getValue, getValue, getValue
    • Method Detail

      • getData

        java.lang.CharSequence getData​(int idx)
        The same as Attributes.getValue(int)
      • getData

        java.lang.CharSequence getData​(java.lang.String nsUri,
                                       java.lang.String localName)
        The same as Attributes.getValue(String,String)