| Package | Description |
|---|---|
| org.wildfly.common.bytes |
Classes related to the manipulation of byte sequences.
|
| org.wildfly.common.iteration |
Classes related to iteration.
|
| Modifier and Type | Method and Description |
|---|---|
ByteIterator |
ByteStringBuilder.iterate() |
| Modifier and Type | Method and Description |
|---|---|
ByteStringBuilder |
ByteStringBuilder.append(ByteIterator iterator) |
| Modifier and Type | Field and Description |
|---|---|
static ByteIterator |
ByteIterator.EMPTY
The empty byte iterator.
|
| Modifier and Type | Method and Description |
|---|---|
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(javax.crypto.Mac mac) |
ByteIterator |
ByteIterator.doFinal(java.security.MessageDigest digest) |
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) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
ByteIterator.contentEquals(ByteIterator other)
Determine if the remaining contents of this iterator are identical to the remaining contents of the other iterator.
|
static ByteIterator |
ByteIterator.ofIterators(ByteIterator... iterators)
Get a concatenated byte iterator.
|
Copyright © 2017 JBoss, a division of Red Hat, Inc.