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

com.hubspot.horizon.apache.internal.EmptyInputStream Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
package com.hubspot.horizon.apache.internal;

import java.io.InputStream;

public final class EmptyInputStream extends InputStream {
  private static final InputStream INSTANCE = new EmptyInputStream();

  private EmptyInputStream() { }

  public static InputStream getInstance() {
    return INSTANCE;
  }

  @Override
  public int read() {
    return -1;
  }

  @Override
  public int available() {
    return 0;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy