Packages

final class ofByte extends ArrayBuilder[Byte]

A class for array builders for arrays of bytes. It can be reused.

Annotations
@SerialVersionUID()
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ofByte
  2. ArrayBuilder
  3. Serializable
  4. ReusableBuilder
  5. Builder
  6. Growable
  7. Clearable
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ofByte()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ++=(xs: IterableOnce[Byte]): ofByte.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  4. final def +=(elem: Byte): ofByte.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def addAll(xs: IterableOnce[Byte]): ofByte.this.type
    Definition Classes
    ArrayBuilder → Growable
  7. def addAll(xs: Array[_ <: Byte], offset: Int, length: Int): ofByte.this.type

    Add a slice of an array

    Add a slice of an array

    Definition Classes
    ArrayBuilder
  8. def addAll(xs: Array[_ <: Byte]): ofByte.this.type

    Add all elements of an array

    Add all elements of an array

    Definition Classes
    ArrayBuilder
  9. def addOne(elem: Byte): ofByte.this.type
    Definition Classes
    ofByte → Growable
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. var capacity: Int
    Attributes
    protected[this]
    Definition Classes
    ArrayBuilder
  12. def clear(): Unit
    Definition Classes
    ArrayBuilder → ReusableBuilder → Builder → Clearable
  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  14. var elems: Array[Byte]
    Attributes
    protected
    Definition Classes
    ofByteArrayBuilder
  15. final def ensureSize(size: Int): Unit
    Attributes
    protected[this]
    Definition Classes
    ArrayBuilder
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(other: Any): Boolean
    Definition Classes
    ofByte → AnyRef → Any
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def knownSize: Int
    Definition Classes
    ArrayBuilder → Growable
  22. def length: Int
    Definition Classes
    ArrayBuilder
  23. def mapResult[NewTo](f: (Array[Byte]) => NewTo): Builder[Byte, NewTo]
    Definition Classes
    Builder
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  27. def resize(size: Int): Unit
    Attributes
    protected[this]
    Definition Classes
    ofByteArrayBuilder
  28. def result(): Array[Byte]
    Definition Classes
    ofByte → ReusableBuilder → Builder
  29. var size: Int
    Attributes
    protected
    Definition Classes
    ArrayBuilder
  30. final def sizeHint(size: Int): Unit
    Definition Classes
    ArrayBuilder → Builder
  31. final def sizeHint(coll: IterableOnce[_], delta: Int): Unit
    Definition Classes
    Builder
  32. final def sizeHintBounded(size: Int, boundingColl: Iterable[_]): Unit
    Definition Classes
    Builder
  33. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  34. def toString(): String
    Definition Classes
    ofByte → AnyRef → Any
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. final def +=(elem1: Byte, elem2: Byte, elems: Byte*): ofByte.this.type
    Definition Classes
    Growable
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ++= aka addAll instead of varargs +=; infix operations with an operand of multiple args will be deprecated

  2. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from ArrayBuilder[Byte]

Inherited from Serializable

Inherited from ReusableBuilder[Byte, Array[Byte]]

Inherited from Builder[Byte, Array[Byte]]

Inherited from Growable[Byte]

Inherited from Clearable

Inherited from AnyRef

Inherited from Any

Ungrouped