All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.landawn.abacus.util.StringWriter Maven / Gradle / Ivy

Go to download

A general programming library in Java/Android. It's easy to learn and simple to use with concise and powerful APIs.

There is a newer version: 5.2.4
Show newest version
/*
 * Copyright (C) 2015 HaiYang Li
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */

package com.landawn.abacus.util;

import java.io.IOException;
import java.io.Writer;

/**
 * Built on StringBuilder. Not like java.io.StringWriter. it's not multi-thread safety.
 *
 * @author Haiyang Li
 * @since 0.8
 */
public final class StringWriter extends Writer {

    private final StringBuilder buf;

    /**
     * 
     */
    public StringWriter() {
        this(new StringBuilder());
    }

    /**
     * 
     *
     * @param initialSize 
     */
    public StringWriter(int initialSize) {
        this(new StringBuilder(initialSize));
    }

    /**
     * 
     *
     * @param sb 
     */
    public StringWriter(StringBuilder sb) {
        this.buf = sb;
        lock = buf;
    }

    /**
     * 
     *
     * @return 
     */
    public StringBuilder stringBuilder() {
        return buf;
    }

    /**
     *
     * @param c
     */
    @Override
    public void write(int c) {
        buf.append((char) c);
    }

    /**
     *
     * @param cbuf
     * @param off
     * @param len
     */
    @Override
    public void write(char[] cbuf, int off, int len) {
        buf.append(cbuf, off, len);
    }

    /**
     *
     * @param str
     */
    @Override
    public void write(String str) {
        buf.append(str);
    }

    /**
     *
     * @param str
     * @param off
     * @param len
     */
    @Override
    public void write(String str, int off, int len) {
        buf.append(str, off, off + len);
    }

    /**
     *
     * @param csq
     * @return
     * @throws IOException Signals that an I/O exception has occurred.
     */
    @Override
    public StringWriter append(CharSequence csq) throws IOException {
        buf.append(csq);

        return this;
    }

    /**
     *
     * @param csq
     * @param start
     * @param end
     * @return
     * @throws IOException Signals that an I/O exception has occurred.
     */
    @Override
    public StringWriter append(CharSequence csq, int start, int end) throws IOException {
        buf.append(csq, start, end);

        return this;
    }

    /**
     *
     * @param c
     * @return
     */
    @Override
    public StringWriter append(char c) {
        buf.append(c);

        return this;
    }

    /**
     * Return the buffer's current value as a string.
     *
     * @return
     */
    @Override
    public String toString() {
        return buf.toString();
    }

    /**
     * Flush.
     */
    @Override
    public void flush() { //NOSONAR
        // Do nothing.
    }

    /**
     *
     * @throws IOException Signals that an I/O exception has occurred.
     */
    @Override
    public void close() throws IOException { //NOSONAR
        // Do nothing
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy