Packages

c

scala.tools.nsc.symtab.classfile

ReusableDataReader

final class ReusableDataReader extends DataReader

Source
ReusableDataReader.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReusableDataReader
  2. DataReader
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ReusableDataReader()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ReusableDataReader toany2stringadd[ReusableDataReader] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ReusableDataReader, B)
    Implicit
    This member is added by an implicit conversion from ReusableDataReader toArrowAssoc[ReusableDataReader] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def bp: Int
    Definition Classes
    ReusableDataReaderDataReader
  8. def bp_=(i: Int): Unit
    Definition Classes
    ReusableDataReaderDataReader
  9. def buf: Array[Byte]
    Definition Classes
    ReusableDataReaderDataReader
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  11. def ensuring(cond: (ReusableDataReader) => Boolean, msg: => Any): ReusableDataReader
    Implicit
    This member is added by an implicit conversion from ReusableDataReader toEnsuring[ReusableDataReader] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (ReusableDataReader) => Boolean): ReusableDataReader
    Implicit
    This member is added by an implicit conversion from ReusableDataReader toEnsuring[ReusableDataReader] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: => Any): ReusableDataReader
    Implicit
    This member is added by an implicit conversion from ReusableDataReader toEnsuring[ReusableDataReader] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): ReusableDataReader
    Implicit
    This member is added by an implicit conversion from ReusableDataReader toEnsuring[ReusableDataReader] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  18. def getByte(mybp: Int): Byte

    extract an integer at position bp from buf

    extract an integer at position bp from buf

    Definition Classes
    ReusableDataReaderDataReader
  19. def getBytes(mybp: Int, bytes: Array[Byte]): Unit
    Definition Classes
    ReusableDataReaderDataReader
  20. def getChar(mybp: Int): Char

    extract a character at position bp from buf

    extract a character at position bp from buf

    Definition Classes
    ReusableDataReaderDataReader
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def getDouble(mybp: Int): Double

    extract a double at position bp from buf

    extract a double at position bp from buf

    Definition Classes
    ReusableDataReaderDataReader
  23. def getFloat(mybp: Int): Float

    extract a float at position bp from buf

    extract a float at position bp from buf

    Definition Classes
    ReusableDataReaderDataReader
  24. def getInt(mybp: Int): Int

    extract an integer at position bp from buf

    extract an integer at position bp from buf

    Definition Classes
    ReusableDataReaderDataReader
  25. def getLong(mybp: Int): Long

    extract a long integer at position bp from buf

    extract a long integer at position bp from buf

    Definition Classes
    ReusableDataReaderDataReader
  26. def getUTF(mybp: Int, len: Int): String
    Definition Classes
    ReusableDataReaderDataReader
  27. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. def nextByte: Byte

    read a byte

    read a byte

    Definition Classes
    ReusableDataReaderDataReader
    Annotations
    @throws(classOf[IndexOutOfBoundsException])
  31. def nextBytes(len: Int): Array[Byte]

    read some bytes

    read some bytes

    Definition Classes
    ReusableDataReaderDataReader
  32. def nextChar: Char

    read a character

    read a character

    Definition Classes
    ReusableDataReaderDataReader
  33. def nextInt: Int

    read an integer

    read an integer

    Definition Classes
    ReusableDataReaderDataReader
  34. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  36. def reset(file: AbstractFile): ReusableDataReader.this.type
  37. def skip(n: Int): Unit

    skip next 'n' bytes

    skip next 'n' bytes

    Definition Classes
    ReusableDataReaderDataReader
  38. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  39. def toString(): String
    Definition Classes
    AnyRef → Any
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ReusableDataReader toStringFormat[ReusableDataReader] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  2. def [B](y: B): (ReusableDataReader, B)
    Implicit
    This member is added by an implicit conversion from ReusableDataReader toArrowAssoc[ReusableDataReader] 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.

Inherited from DataReader

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromReusableDataReader to any2stringadd[ReusableDataReader]

Inherited by implicit conversion StringFormat fromReusableDataReader to StringFormat[ReusableDataReader]

Inherited by implicit conversion Ensuring fromReusableDataReader to Ensuring[ReusableDataReader]

Inherited by implicit conversion ArrowAssoc fromReusableDataReader to ArrowAssoc[ReusableDataReader]

Ungrouped