KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > lang > CharSequence > Top Examples

  • javolution.xml.sax.AttributesImpl
    This class provides a default implementation of the {@link Attributes} interface. It is a more generic version of <code>org.xml.sax.AttributesImpl</code> with <code>String</code> replaced by <code>CharSequence</code>. @author <a HREF="mailto:sax@megginson.co ...
  • javolution.xml.pull.XmlPullParserImpl
    <p> This class provides a real-time XPP-like XML parser; this parser is <i>extremely</i> fast and <b>does not create temporary objects</b> (no garbage generated and no GC interruption).</p> <p> The parser input source can be either a {@link #setInput(Read ...
  • javolution.xml.sax.WriterHandler
    <p> This class generates xml documents from SAX2 events.</p> @author <a HREF="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a> @version 3.1, March 11, 2005
  • javolution.xml.pull.XmlPullParser
    <p> This interface represents a XML Pull parser with non-constant {@link String} replaced with {@link CharSequence} for greater flexibility and speed.</p> XML Pull Parser is an interface that defines parsing functionlity provided in <a HREF="http://www.xmlpull.org/">XMLPULL V1 A ...
  • javolution.xml.XmlElement
    <p> This class represents a XML element. Instances of this class are made available only during the XML serialization/deserialization process.</p> <p> During serialization, {@link XmlFormat#format XmlFormat.format(XmlElement)} is used to represent the Java objects into XML. < ...
  • javolution.lang.Text
    <p> This class represents an immutable character sequence with extremely fast {@link #concat concatenation}, {@link #insert insertion} and {@link #delete deletion} capabilities (O[Log(n)]) instead of O[n] for StringBuffer/StringBuilder).</p> <p> Instances of this class have the f ...
  • javolution.xml.sax.Attributes
    This interface represents a list of XML attributes. It is a more generic version of <code>org.xml.sax.Attributes</code> with the non-constant <code>String</code> replaced by <code>CharSequence</code>. <p> Note: To parse primitive types attributes (e.g. in ...
  • javolution.xml.ConstructorHandler
    <p> This class handles SAX2 events in order to build objects from their xml representation.</p> <p> For example, the following formats and parses an object without intermediate xml document:<pre> ConstructorHandler ch = new ConstructorHandler(); ObjectWriter.write(obj, ch) ...
  • javolution.xml.sax.ContentHandler
    Receives notification of the logical content of a document. It is a more generic version of <code>org.xml.sax.ContentHandler</code> with the <code>String</code> type replaced by <code>CharSequence</code>. @author <a HREF="mailto:sax@megginson.com">David ...
  • net.sf.saxon.functions.Translate
  • net.sf.saxon.value.StringValue
    An atomic value of type xs:string
  • javolution.xml.sax.XmlSaxParserImpl
    <p> This class provides a real-time SAX2-like XML parser; this parser is <i>extremely</i> fast and <b>does not create temporary objects</b> (no garbage generated and no GC interruption).</p> <p> The parser input source can be either a {@link #parse(Reader ...
  • net.sf.saxon.event.XMLEmitter
    XMLEmitter is an Emitter that generates XML output to a specified destination.
  • net.sf.saxon.value.Value
    A value is the result of an expression but it is also an expression in its own right. Note that every value can be regarded as a sequence - in many cases, a sequence of length one.
  • net.sf.saxon.event.HTMLEmitter
    This class generates HTML output @author Michael H. Kay
  • net.sf.saxon.type.BuiltInAtomicType
    This class represents a built-in atomic type, which may be either a primitive type (such as xs:decimal or xs:anyURI) or a derived type (such as xs:ID or xdt:dayTimeDuration).
  • net.sf.saxon.event.SequenceWriter
    This outputter is used when writing a sequence of atomic values and nodes, for example, when xsl:variable is used with content and an "as" attribute. The outputter builds the sequence; the concrete subclass is responsible for deciding what to do with the resulting items. <p>This class is no ...
  • org.eclipse.ui.editors.text.DocumentInputStream
    An <code>InputStream</code> that reads from an <code>IDocument</code>. The input stream ensures that its content is the same as the document content when the stream was created. <p> Note that {@link #close()} must be called to release any acquired resources. </p> ...
  • net.sf.saxon.tinytree.CharSlice
    This is an implementation of the JDK 1.4 CharSequence interface: it implements a CharSequence as a view of an array. The implementation relies on the array being immutable: as a minimum, the caller is required to ensure that the array contents will not change so long as the CharSlice remains in ex ...
  • net.sf.saxon.om.Item
    An Item is an object that can occur as a member of a sequence. It corresponds directly to the concept of an item in the XPath 2.0 data model. There are two kinds of Item: atomic values, and nodes. <p> This interface is part of the public Saxon API. As such (starting from Saxon 8.4), methods ...
Popular Tags