Example usage for java.lang CharSequence interface-usage

List of usage examples for java.lang CharSequence interface-usage

Introduction

In this page you can find the example usage for java.lang CharSequence interface-usage.

Usage

From source file eu.stratosphere.types.StringValue.java

/**
 * Mutable string data type that implements the Key interface.
 * StringValue encapsulates the basic functionality of a {@link String}, in a serializable and mutable way.
 * <p>
 * The mutability allows to reuse the object inside the user code, also across invocations. Reusing a StringValue object
 * helps to increase the performance, as string objects are rather heavy-weight objects and incur a lot of garbage

From source file org.semanticweb.owlapi.model.IRI.java

/**
 * Represents International Resource Identifiers.
 *
 * @author Matthew Horridge, The University of Manchester, Information Management Group
 * @since 3.0.0
 */

From source file br.msf.commons.text.EnhancedStringBuilder.java

/**
 * A StringBuilder Wrapper that adds some new useful methods to the Java's standard {@link StringBuilder}.
 * <p/>
 * Uses the Delegation design pattern, where every method is dispatched to the delegate object, witch can
 * be accessed via <tt>this.getDelegate()</tt>.
 *

From source file org.getobjects.appserver.core.WOMessage.java

/**
 * WOMessage
 * <p>
 * Abstract superclass of WORequest and WOResponse. Manages HTTP headers and
 * the entity content. Plus some extras (eg cookies and userInfo).
 *

From source file br.ojimarcius.commons.text.EnhancedStringBuilder.java

/**
 * A StringBuilder Wrapper that adds some new useful methods to the Java's standard {@link StringBuilder}.
 * <p/>
 * Uses the Delegation design pattern, where every method is dispatched to the delegate object, witch can
 * be accessed via <tt>this.getDelegate()</tt>.
 *

From source file it.d4nguard.rgrpg.util.StringCompiler.java

public class StringCompiler implements CharSequence, Appendable, Serializable {
    //-----------------------------------------------------------------------
    /**
     * Inner class to allow StringCompiler to operate as a writer.
     */
    class StringCompilerReader extends Reader {

From source file org.codehaus.groovy.grails.web.util.StreamCharBuffer.java

/**
 * <p>
 * StreamCharBuffer is a multipurpose in-memory buffer that can replace JDK
 * in-memory buffers (StringBuffer, StringBuilder, StringWriter).
 * </p>
 *

From source file org.grails.buffer.StreamCharBuffer.java

/**
 * <p>
 * StreamCharBuffer is a multipurpose in-memory buffer that can replace JDK
 * in-memory buffers (StringBuffer, StringBuilder, StringWriter).
 * </p>
 *

From source file org.apache.noggit.JSONParser.java

    /**
     * @author yonik
     * @version $Id: CharArr.java 583538 2007-10-10 16:53:02Z yonik $
     */
    class CharArr implements CharSequence, Appendable {
        protected char[] buf;

From source file org.apache.noggit.ObjectBuilder.java

    /**
     * @author yonik
     * @version $Id: CharArr.java 583538 2007-10-10 16:53:02Z yonik $
     */
    class CharArr implements CharSequence, Appendable {
        protected char[] buf;