ByteIterator |
CodePointIterator.asLatin1() |
Get a byte iterator over the latin-1 encoding of this code point iterator.
|
ByteIterator |
CodePointIterator.asUtf8() |
Get a byte iterator over the UTF-8 encoding of this code point iterator.
|
ByteIterator |
CodePointIterator.asUtf8(boolean escapeNul) |
Get a byte iterator over the UTF-8 encoding of this code point iterator.
|
ByteIterator |
CodePointIterator.base32Decode() |
Base32-decode the current stream.
|
ByteIterator |
CodePointIterator.base32Decode(Base32Alphabet alphabet) |
Base32-decode the current stream.
|
ByteIterator |
CodePointIterator.base32Decode(Base32Alphabet alphabet,
boolean requirePadding) |
Base32-decode the current stream.
|
ByteIterator |
CodePointIterator.base64Decode() |
Base64-decode the current stream.
|
ByteIterator |
CodePointIterator.base64Decode(Base64Alphabet alphabet) |
Base64-decode the current stream.
|
ByteIterator |
CodePointIterator.base64Decode(Base64Alphabet alphabet,
boolean requirePadding) |
Base64-decode the current stream.
|
ByteIterator |
ByteIterator.delimitedBy(int... delims) |
Get a sub-iterator that is delimited by the given bytes.
|
ByteIterator |
ByteIterator.doFinal(java.security.MessageDigest digest) |
|
ByteIterator |
ByteIterator.doFinal(javax.crypto.Mac mac) |
|
ByteIterator |
CodePointIterator.hexDecode() |
Hex-decode the current stream.
|
ByteIterator |
ByteIterator.interleavedWith(byte[] table) |
Get a byte iterator which translates this byte iterator through an interleaving table.
|
ByteIterator |
ByteIterator.interleavedWith(int[] table) |
Get a byte iterator which translates this byte iterator through an interleaving table.
|
ByteIterator |
ByteIterator.limitedTo(int size) |
Return a copy of this iterator which is limited to the given number of bytes after the current one.
|
static ByteIterator |
ByteIterator.ofByteBuffer(java.nio.ByteBuffer buffer) |
Get a byte iterator for a byte buffer.
|
static ByteIterator |
ByteIterator.ofBytes(byte... bytes) |
Get a byte iterator for a byte array.
|
static ByteIterator |
ByteIterator.ofBytes(byte[] bytes,
int[] interleave) |
Get a byte iterator for a byte array with interleave.
|
static ByteIterator |
ByteIterator.ofBytes(byte[] bytes,
int offs,
int len) |
Get a byte iterator for a byte array.
|
static ByteIterator |
ByteIterator.ofBytes(byte[] bytes,
int offs,
int len,
int[] interleave) |
Get a byte iterator for a byte array with interleave.
|
static ByteIterator |
ByteIterator.ofIterators(ByteIterator... iterators) |
Get a concatenated byte iterator.
|
ByteIterator |
ByteIterator.sign(java.security.Signature signature) |
|