object Input extends FromByteArrayInput with FromByteBufferInput with FromInputStreamInput with FromFileInput with FromIteratorInput

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Input
  2. FromIteratorInput
  3. FromFileInput
  4. FromInputStreamInput
  5. FromByteBufferInput
  6. FromByteArrayInput
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. implicit final class InputOps[Bytes] extends AnyVal
  2. abstract class PaddingProvider[Bytes] extends AnyRef
  3. final case class Position(input: Input[_], index: Long) extends Product with Serializable
  4. trait Provider[T] extends AnyRef

    Responsible for converting an instance of T to a respective Input instance.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. implicit def FromInputStreamProvider[T <: InputStream]: Provider[T]
    Definition Classes
    FromInputStreamInput
  5. implicit def FromIteratorProvider[T](implicit p: Provider[T]): Provider[Iterator[T]]
    Definition Classes
    FromIteratorInput
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def fromByteArray(value: Array[Byte]): Input[Array[Byte]]
    Definition Classes
    FromByteArrayInput
  11. def fromByteBuffer(value: ByteBuffer): Input[Array[Byte]]
    Definition Classes
    FromByteBufferInput
  12. def fromFile(file: File, bufferSize: Int = 16384): Input[Array[Byte]]
    Definition Classes
    FromFileInput
  13. def fromInputStream(inputStream: InputStream, bufferSize: Int = 16384): Input[Array[Byte]]
    Definition Classes
    FromInputStreamInput
  14. def fromIterator[Bytes](value: Iterator[Input[Bytes]])(implicit arg0: ByteAccess[Bytes]): Input[Bytes]
    Definition Classes
    FromIteratorInput
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. implicit def provider[B](implicit arg0: ByteAccess[B]): Provider[Input[B]] { type Bytes = B }

    The trivial provider for an already existing Input.

  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. implicit object FromByteArrayProvider extends Provider[Array[Byte]]
    Definition Classes
    FromByteArrayInput
  28. implicit object FromByteBufferProvider extends Provider[ByteBuffer]
    Definition Classes
    FromByteBufferInput
  29. implicit object FromFileProvider extends Provider[File]
    Definition Classes
    FromFileInput

Deprecated Value Members

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

Inherited from FromIteratorInput

Inherited from FromFileInput

Inherited from FromInputStreamInput

Inherited from FromByteBufferInput

Inherited from FromByteArrayInput

Inherited from AnyRef

Inherited from Any

Ungrouped