object IteratorByteWriter extends ByteWriter[Iterator[Array[Byte]]]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- IteratorByteWriter
- ByteWriter
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
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
-
def
append(stream: Iterator[Array[Byte]]): ByteStreamState[Nothing]
Appends this byte stream to the current accumulator
Appends this byte stream to the current accumulator
- Definition Classes
- IteratorByteWriter → ByteWriter
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
emptyStream: ByteStreamState[Nothing]
Empty state
Empty state
- Definition Classes
- ByteWriter
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
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()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toOutputStream[E](data: ByteStreamState[E], os: OutputStream): Either[E, Unit]
Writes a ByteStream to a output stream
Writes a ByteStream to a output stream
- Definition Classes
- IteratorByteWriter → ByteWriter
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
writeBENumber(value: Int, bytes: Int): ByteStreamState[String]
Writes a Integer in N Bytes (Big Endian)
Writes a Integer in N Bytes (Big Endian)
- Definition Classes
- ByteWriter
-
def
writeByte(byte: Int): ByteStreamState[String]
Write 1 Byte
Write 1 Byte
- Definition Classes
- ByteWriter
-
def
writeBytes(bytes: Seq[Int]): ByteStreamState[String]
Adds a sequence of bytes to the tail of the byte stream
Adds a sequence of bytes to the tail of the byte stream
- Definition Classes
- IteratorByteWriter → ByteWriter
-
def
writeLENumber(value: Int, bytes: Int): ByteStreamState[String]
Writes a Integer in N Bytes (Little Endian)
Writes a Integer in N Bytes (Little Endian)
- Definition Classes
- ByteWriter
-
def
writeString(string: String): ByteStreamState[String]
Writes a String
Writes a String
- Definition Classes
- ByteWriter
-
def
writeStringLn(string: String, delimiter: String = "\n"): ByteStreamState[String]
Writes a String Line
Writes a String Line
- Definition Classes
- ByteWriter