class BufferedInputStream extends FilterInputStream with Closeable with AutoCloseable
- Alphabetic
- By Inheritance
- BufferedInputStream
- FilterInputStream
- InputStream
- Closeable
- AutoCloseable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new BufferedInputStream(in: InputStream)
- new BufferedInputStream(_in: InputStream, initialSize: Int)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def available(): Int
- Definition Classes
- BufferedInputStream → FilterInputStream → InputStream
- var buf: Array[Byte]
The internal buffer array where the data is stored.
The internal buffer array where the data is stored.
- Attributes
- protected
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def close(): Unit
- Definition Classes
- BufferedInputStream → FilterInputStream → InputStream → Closeable → AutoCloseable
- var count: Int
The index one greater than the index of the last valid byte in the buffer.
The index one greater than the index of the last valid byte in the buffer.
- Attributes
- protected
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- var in: InputStream
- Attributes
- protected
- Definition Classes
- FilterInputStream
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mark(readLimit: Int): Unit
- Definition Classes
- BufferedInputStream → FilterInputStream → InputStream
- def markSupported(): Boolean
- Definition Classes
- BufferedInputStream → FilterInputStream → InputStream
- var marklimit: Int
The maximum read ahead allowed after a call to the mark method before* subsequent calls to the reset method fail.
The maximum read ahead allowed after a call to the mark method before* subsequent calls to the reset method fail.
- Attributes
- protected
- var markpos: Int
The value of the pos field at the time the last mark method was called.
The value of the pos field at the time the last mark method was called.
- Attributes
- protected
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- var pos: Int
The current position in the buffer.
The current position in the buffer.
- Attributes
- protected
- def read(b: Array[Byte], off: Int, len: Int): Int
- Definition Classes
- BufferedInputStream → FilterInputStream → InputStream
- def read(): Int
- Definition Classes
- BufferedInputStream → FilterInputStream → InputStream
- def read(b: Array[Byte]): Int
- Definition Classes
- FilterInputStream → InputStream
- def readAllBytes(): Array[Byte]
Java 9
Java 9
- Definition Classes
- InputStream
- def readNBytes(len: Int): Array[Byte]
Java 11
Java 11
- Definition Classes
- InputStream
- def readNBytes(buffer: Array[Byte], off: Int, len: Int): Int
Java 9
Java 9
- Definition Classes
- InputStream
- def readNBytesImpl(len: Int): Array[Byte]
- Definition Classes
- InputStream
- def reset(): Unit
- Definition Classes
- BufferedInputStream → FilterInputStream → InputStream
- def skip(n: Long): Long
- Definition Classes
- BufferedInputStream → FilterInputStream → InputStream
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def transferTo(out: OutputStream): Long
Java 9
Java 9
- Definition Classes
- InputStream
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()