case class ArrayReadableBuffer extends ReadableBuffer with Product with Serializable
An array-backed readable buffer.
- Alphabetic
- By Inheritance
- ArrayReadableBuffer
- Serializable
- Product
- Equals
- ReadableBuffer
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- Implicit
- This member is added by an implicit conversion from ArrayReadableBuffer toany2stringadd[ArrayReadableBuffer] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
- def ->[B](y: B): (ArrayReadableBuffer, B)
- Implicit
- This member is added by an implicit conversion from ArrayReadableBuffer toArrowAssoc[ArrayReadableBuffer] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def discard(n: Int): Unit
Sets the read index to
index + n
(in other words, skipsn
bytes).Sets the read index to
index + n
(in other words, skipsn
bytes).- Definition Classes
- ArrayReadableBuffer → ReadableBuffer
- def duplicate(): ArrayReadableBuffer
- Definition Classes
- ArrayReadableBuffer → ReadableBuffer
- def ensuring(cond: (ArrayReadableBuffer) => Boolean, msg: => Any): ArrayReadableBuffer
- Implicit
- This member is added by an implicit conversion from ArrayReadableBuffer toEnsuring[ArrayReadableBuffer] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: (ArrayReadableBuffer) => Boolean): ArrayReadableBuffer
- Implicit
- This member is added by an implicit conversion from ArrayReadableBuffer toEnsuring[ArrayReadableBuffer] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean, msg: => Any): ArrayReadableBuffer
- Implicit
- This member is added by an implicit conversion from ArrayReadableBuffer toEnsuring[ArrayReadableBuffer] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean): ArrayReadableBuffer
- Implicit
- This member is added by an implicit conversion from ArrayReadableBuffer toEnsuring[ArrayReadableBuffer] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from ArrayReadableBuffer toStringFormat[ArrayReadableBuffer] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def index: Int
Returns the current read index of this buffer.
Returns the current read index of this buffer.
- Definition Classes
- ArrayReadableBuffer → ReadableBuffer
- def index_=(i: Int): Unit
- Definition Classes
- ArrayReadableBuffer → ReadableBuffer
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def readArray(length: Int): Array[Byte]
Reads an array of Byte of the given length.
Reads an array of Byte of the given length.
- length
the length of the newly created array.
- Definition Classes
- ReadableBuffer
- def readByte(): Byte
Reads a
Byte
from this buffer.Reads a
Byte
from this buffer.- Definition Classes
- ArrayReadableBuffer → ReadableBuffer
- def readBytes(array: Array[Byte]): Unit
Fills the given array with the bytes read from this buffer.
Fills the given array with the bytes read from this buffer.
- Definition Classes
- ArrayReadableBuffer → ReadableBuffer
- def readCString(): String
Reads a UTF-8 C-Style String.
Reads a UTF-8 C-Style String.
- Definition Classes
- ReadableBuffer
- def readDouble(): Double
Reads a
Double
from this buffer.Reads a
Double
from this buffer.- Definition Classes
- ArrayReadableBuffer → ReadableBuffer
- def readInt(): Int
Reads an
Int
from this buffer.Reads an
Int
from this buffer.- Definition Classes
- ArrayReadableBuffer → ReadableBuffer
- def readLong(): Long
Reads a
Long
from this buffer.Reads a
Long
from this buffer.- Definition Classes
- ArrayReadableBuffer → ReadableBuffer
- def readString(): String
Reads a UTF-8 String.
Reads a UTF-8 String.
- Definition Classes
- ReadableBuffer
- def readable(): Int
Returns the number of readable remaining bytes of this buffer.
Returns the number of readable remaining bytes of this buffer.
- Definition Classes
- ArrayReadableBuffer → ReadableBuffer
- def size: Int
Returns the buffer size.
Returns the buffer size.
- Definition Classes
- ArrayReadableBuffer → ReadableBuffer
- def slice(n: Int): ArrayReadableBuffer
Returns a new instance of
ReadableBuffer
, which starts at the current index and containsn
bytes.Returns a new instance of
ReadableBuffer
, which starts at the current index and containsn
bytes.This method does not update the read index of the original buffer.
- Definition Classes
- ArrayReadableBuffer → ReadableBuffer
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toWritableBuffer: WritableBuffer
- Definition Classes
- ArrayReadableBuffer → ReadableBuffer
- 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()
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
- Deprecated
(Since version ) see corresponding Javadoc for more information.
- def →[B](y: B): (ArrayReadableBuffer, B)
- Implicit
- This member is added by an implicit conversion from ArrayReadableBuffer toArrowAssoc[ArrayReadableBuffer] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->
instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.