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

com.palantir.common.io.ForwardingInputStream Maven / Gradle / Ivy

There is a newer version: 0.1152.0
Show newest version
/*
 * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved.
 *
 * 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.palantir.common.io;

import java.io.IOException;
import java.io.InputStream;

public abstract class ForwardingInputStream extends InputStream {

    @Override
    public int available() throws IOException {
        return delegate().available();
    }

    @Override
    public void close() throws IOException {
        delegate().close();
    }

    @Override
    public boolean equals(Object obj) {
        return delegate().equals(obj);
    }

    @Override
    public int hashCode() {
        return delegate().hashCode();
    }

    @Override
    public void mark(int readlimit) {
        delegate().mark(readlimit);
    }

    @Override
    public boolean markSupported() {
        return delegate().markSupported();
    }

    @Override
    public int read() throws IOException {
        return delegate().read();
    }

    @Override
    public int read(byte[] bytes, int off, int len) throws IOException {
        return delegate().read(bytes, off, len);
    }

    @Override
    public int read(byte[] bytes) throws IOException {
        return delegate().read(bytes);
    }

    @Override
    public void reset() throws IOException {
        delegate().reset();
    }

    @Override
    public long skip(long num) throws IOException {
        return delegate().skip(num);
    }

    /**
     * Returns the backing delegate instance that methods are forwarded to.
     * Concrete subclasses override this method to supply the instance being
     * decorated.
     */
    protected abstract InputStream delegate();

    /**
     * Returns the string representation generated by the delegate's {@code
     * toString} method.
     */
    @Override
    public String toString() {
        return delegate().toString();
    }

    /* No equals or hashCode. See ForwardingObject comments for details. */
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy