Uses of Class
org.wildfly.common.iteration.CodePointIterator
Packages that use CodePointIterator
Package
Description
Classes related to the manipulation of byte sequences.
Classes related to iteration.
-
Uses of CodePointIterator in org.wildfly.common.bytes
Methods in org.wildfly.common.bytes with parameters of type CodePointIteratorModifier and TypeMethodDescriptionByteStringBuilder.appendAscii(CodePointIterator iterator) ByteStringBuilder.appendLatin1(CodePointIterator iterator) ByteStringBuilder.appendUtf8(CodePointIterator iterator) -
Uses of CodePointIterator in org.wildfly.common.iteration
Fields in org.wildfly.common.iteration declared as CodePointIteratorModifier and TypeFieldDescriptionstatic final CodePointIteratorCodePointIterator.EMPTYThe empty code point iterator.Methods in org.wildfly.common.iteration that return CodePointIteratorModifier and TypeMethodDescriptionByteIterator.asLatin1String()Get this byte iterator as a Latin-1 string.ByteIterator.asUtf8String()Get this byte iterator as a UTF-8 string.ByteIterator.base32Encode()Base32-encode the current stream.ByteIterator.base32Encode(Base32Alphabet alphabet) Base32-encode the current stream.ByteIterator.base32Encode(Base32Alphabet alphabet, boolean addPadding) Base32-encode the current stream.ByteIterator.base64Encode()Base64-encode the current stream.ByteIterator.base64Encode(Base64Alphabet alphabet) Base64-encode the current stream.ByteIterator.base64Encode(Base64Alphabet alphabet, boolean addPadding) Base64-encode the current stream.final CodePointIteratorCodePointIterator.delimitedBy(int... delims) Get a sub-iterator that is delimited by the given code points.ByteIterator.hexEncode()Hex-encode the current stream.ByteIterator.hexEncode(boolean toUpperCase) Hex-encode the current stream.final CodePointIteratorCodePointIterator.limitedTo(long size) Return a copy of this iterator which is limited to the given number of code points after the current one.static CodePointIteratorCodePointIterator.ofChars(char[] chars) Get a code point iterator for a character array.static CodePointIteratorCodePointIterator.ofChars(char[] chars, int offs) Get a code point iterator for a character array.static CodePointIteratorCodePointIterator.ofChars(char[] chars, int offs, int len) Get a code point iterator for a character array.static CodePointIteratorCodePointIterator.ofLatin1Bytes(byte[] bytes) Get a code point iterator for a ISO-8859-1 (Latin-1) encoded array.static CodePointIteratorCodePointIterator.ofLatin1Bytes(byte[] bytes, int offs, int len) Get a code point iterator for a ISO-8859-1 (Latin-1) encoded array.static CodePointIteratorGet a code point iterator for a string.static CodePointIteratorGet a code point iterator for a string.static CodePointIteratorCodePointIterator.ofUtf8Bytes(byte[] bytes) Get a code point iterator for a UTF-8 encoded byte array.static CodePointIteratorCodePointIterator.ofUtf8Bytes(byte[] bytes, int offs, int len) Get a code point iterator for a UTF-8 encoded array.CodePointIterator.skip(IntPredicate predicate) Get a sub-iterator that removes code points based on apredicate.CodePointIterator.skipAll()Skip all the remaining code points in this iterator.CodePointIterator.skipCrLf()Get a sub-iterator that removes the following code points:10(\n) and13(\r).Methods in org.wildfly.common.iteration with parameters of type CodePointIteratorModifier and TypeMethodDescriptionfinal booleanCodePointIterator.contentEquals(CodePointIterator other) Determine if the remaining contents of this iterator are identical to the remaining contents of the other iterator.