Uses of Class
javolution.text.CharArray

Packages that use CharArray
javolution.text Provides classes and interfaces to handle text. 
javolution.xml Provides support for the encoding of objects, and the objects reachable from them, into XML; and the complementary reconstruction of the object graph from XML
javolution.xml.sax Provides SAX2 and SAX2-Like parsers; the later being several times faster than conventional SAX2 parsers (by avoiding String allocations while parsing). 
javolution.xml.stream Provides StAX-like XML readers/writers which do not require object creation (such as String) and are consequently faster and more time predictable than standard StAX classes. 
 

Uses of CharArray in javolution.text
 

Methods in javolution.text that return CharArray
 CharArray CharArray.setArray(char[] array, int offset, int length)
          Sets the underlying array of this CharArray.
 CharArray TextBuilder.toCharArray()
          Returns the CharArray representation of this TextBuilder.
 

Methods in javolution.text with parameters of type CharArray
 boolean CharArray.equals(CharArray that)
          Compares this character array against the specified CharArray.
 

Uses of CharArray in javolution.xml
 

Methods in javolution.xml that return CharArray
 CharArray XMLFormat.InputElement.getAttribute(String name)
          Searches for the attribute having the specified name.
 CharArray XMLFormat.InputElement.getText()
          Returns the content of a text-only element (equivalent to getStreamReader().getElementText()).
 

Uses of CharArray in javolution.xml.sax
 

Methods in javolution.xml.sax that return CharArray
 CharArray Attributes.getLocalName(int index)
          Looks up an attribute's local name by index.
 CharArray Attributes.getQName(int index)
          Looks up an attribute's XML 1.0 qualified name by index.
 CharArray Attributes.getType(CharSequence qName)
          Looks up an attribute's type by XML 1.0 qualified name.
 CharArray Attributes.getType(CharSequence uri, CharSequence localName)
          Looks up an attribute's type by Namespace name (convenience method).
 CharArray Attributes.getType(int index)
          Looks up an attribute's type by index.
 CharArray Attributes.getURI(int index)
          Looks up an attribute's Namespace URI by index.
 CharArray Attributes.getValue(CharSequence qName)
          Looks up an attribute's value by XML 1.0 qualified name (convenience method).
 CharArray Attributes.getValue(CharSequence uri, CharSequence localName)
          Looks up an attribute's value by Namespace name (convenience method).
 CharArray Attributes.getValue(int index)
          Looks up an attribute's value by index.
 

Methods in javolution.xml.sax with parameters of type CharArray
 void ContentHandler.endElement(CharArray uri, CharArray localName, CharArray qName)
          Receives notification of the end of an element.
 void DefaultHandler.endElement(CharArray namespaceURI, CharArray localName, CharArray qName)
           
 void ContentHandler.endPrefixMapping(CharArray prefix)
          Ends the scope of a prefix-URI mapping.
 void DefaultHandler.endPrefixMapping(CharArray prefix)
           
 void ContentHandler.processingInstruction(CharArray target, CharArray data)
          Receives notification of a processing instruction.
 void DefaultHandler.processingInstruction(CharArray target, CharArray data)
           
 void ContentHandler.skippedEntity(CharArray name)
          Receives notification of a skipped entity.
 void DefaultHandler.skippedEntity(CharArray name)
           
 void ContentHandler.startElement(CharArray uri, CharArray localName, CharArray qName, Attributes atts)
          Receives notification of the beginning of an element.
 void DefaultHandler.startElement(CharArray namespaceURI, CharArray localName, CharArray qName, Attributes atts)
           
protected  void DefaultHandler.startElement(CharArray uri, CharArray localName, CharArray qName, Attributes atts)
           Generates compile-time error if startElement is not correctly overriden.
 void ContentHandler.startPrefixMapping(CharArray prefix, CharArray uri)
          Begins the scope of a prefix-URI Namespace mapping.
 void DefaultHandler.startPrefixMapping(CharArray prefix, CharArray uri)
           
 

Uses of CharArray in javolution.xml.stream
 

Methods in javolution.xml.stream that return CharArray
 CharArray XMLStreamReader.getAttributeLocalName(int index)
          Returns the localName of the attribute at the provided index.
 CharArray XMLStreamReaderImpl.getAttributeLocalName(int index)
           
 CharArray XMLStreamReader.getAttributeNamespace(int index)
          Returns the namespace of the attribute at the provided index
 CharArray XMLStreamReaderImpl.getAttributeNamespace(int index)
           
 CharArray XMLStreamReader.getAttributePrefix(int index)
          Returns the prefix of this attribute at the provided index
 CharArray XMLStreamReaderImpl.getAttributePrefix(int index)
           
 CharArray XMLStreamReader.getAttributeType(int index)
          Returns the XML type of the attribute at the provided index.
 CharArray XMLStreamReaderImpl.getAttributeType(int index)
           
 CharArray XMLStreamReader.getAttributeValue(CharSequence namespaceURI, CharSequence localName)
          Returns the normalized attribute value of the attribute with the namespace and localName.
 CharArray XMLStreamReaderImpl.getAttributeValue(CharSequence uri, CharSequence localName)
           
 CharArray XMLStreamReader.getAttributeValue(int index)
          Returns the value of the attribute at the index.
 CharArray XMLStreamReaderImpl.getAttributeValue(int index)
           
 CharArray XMLStreamReader.getCharacterEncodingScheme()
          Returns the character encoding declared on the xml declaration.
 CharArray XMLStreamReaderImpl.getCharacterEncodingScheme()
           
 CharArray XMLStreamReader.getElementText()
          Reads the content of a text-only element, an exception is thrown if this is not a text-only element.
 CharArray XMLStreamReaderImpl.getElementText()
           
 CharArray XMLStreamReader.getLocalName()
          Returns the (local) name of the current event.
 CharArray XMLStreamReaderImpl.getLocalName()
           
 CharArray XMLStreamReader.getNamespacePrefix(int index)
          Returns the prefix for the namespace declared at the index.
 CharArray XMLStreamReaderImpl.getNamespacePrefix(int index)
           
 CharArray XMLStreamReader.getNamespaceURI()
          If the current event is a START_ELEMENT or END_ELEMENT this method returns the URI of the current element (URI mapping to the prefix element/attribute has; or if no prefix null).
 CharArray XMLStreamReaderImpl.getNamespaceURI()
           
 CharArray NamespaceContext.getNamespaceURI(CharSequence prefix)
          Returns the namespace URI bound to a prefix in the current scope or null if the prefix is unbound.
 CharArray XMLStreamReader.getNamespaceURI(CharSequence prefix)
          Returns the uri for the given prefix.
 CharArray XMLStreamReaderImpl.getNamespaceURI(CharSequence prefix)
           
 CharArray XMLStreamReader.getNamespaceURI(int index)
          Returns the URI for the namespace declared at the index.
 CharArray XMLStreamReaderImpl.getNamespaceURI(int index)
           
 CharArray XMLStreamReader.getPIData()
          Get the data section of a processing instruction.
 CharArray XMLStreamReaderImpl.getPIData()
           
 CharArray XMLStreamReader.getPITarget()
          Returns the target of a processing instruction.
 CharArray XMLStreamReaderImpl.getPITarget()
           
 CharArray XMLStreamReader.getPrefix()
          Returns the prefix of the current event or null if the event does not have a prefix.
 CharArray XMLStreamReaderImpl.getPrefix()
           
 CharArray NamespaceContext.getPrefix(CharSequence namespaceURI)
          Returns the prefix bound to the namespace URI in the current scope or null if the namespace URI is unbound.
 CharArray XMLStreamReaderImpl.getQName()
          Returns the qualified name of the current event.
 CharArray XMLStreamReaderImpl.getQName(int depth)
          Returns the qualified name of the element at the specified level.
 CharArray XMLStreamReader.getText()
          Returns the current value of the parse event as a string, this returns the string value of a CHARACTERS event, returns the value of a COMMENT, the replacement value for an ENTITY_REFERENCE, the string value of a CDATA section, the string value for a SPACE event, or the String value of the internal subset of the DTD.
 CharArray XMLStreamReaderImpl.getText()
           
 CharArray XMLStreamReader.getVersion()
          Gets the xml version declared on the xml declaration.
 CharArray XMLStreamReaderImpl.getVersion()
           
 



Copyright © 2005-2012 Javolution. All Rights Reserved.