Uses of Interface
io.netty5.util.ByteProcessor
-
Packages that use ByteProcessor Package Description io.netty5.buffer.api IncubatingBufferAPI, as a proposed alternative toByteBuf.io.netty5.util Utility classes used across multiple packages. -
-
Uses of ByteProcessor in io.netty5.buffer.api
Methods in io.netty5.buffer.api with parameters of type ByteProcessor Modifier and Type Method Description default intByteCursor. process(ByteProcessor processor)Process the remaining bytes in this iterator with the givenByteProcessor. -
Uses of ByteProcessor in io.netty5.util
Classes in io.netty5.util that implement ByteProcessor Modifier and Type Class Description static classByteProcessor.IndexNotOfProcessorAByteProcessorwhich finds the first appearance which is not of a specific byte.static classByteProcessor.IndexOfProcessorAByteProcessorwhich finds the first appearance of a specific byte.Fields in io.netty5.util declared as ByteProcessor Modifier and Type Field Description static ByteProcessorByteProcessor. FIND_ASCII_SPACEAborts on a ascii space character (' ').static ByteProcessorByteProcessor. FIND_COMMAAborts on a comma(',').static ByteProcessorByteProcessor. FIND_CRAborts on aCR ('\r').static ByteProcessorByteProcessor. FIND_CRLFAborts on aCR ('\r')or aLF ('\n').static ByteProcessorByteProcessor. FIND_LFAborts on aLF ('\n').static ByteProcessorByteProcessor. FIND_LINEAR_WHITESPACEAborts on a linear whitespace (a (' 'or a'\t').static ByteProcessorByteProcessor. FIND_NON_CRAborts on a non-CR ('\r').static ByteProcessorByteProcessor. FIND_NON_CRLFAborts on a byte which is neither aCR ('\r')nor aLF ('\n').static ByteProcessorByteProcessor. FIND_NON_LFAborts on a non-LF ('\n').static ByteProcessorByteProcessor. FIND_NON_LINEAR_WHITESPACEAborts on a byte which is not a linear whitespace (neither' 'nor'\t').static ByteProcessorByteProcessor. FIND_NON_NULAborts on a non-NUL (0x00).static ByteProcessorByteProcessor. FIND_NULAborts on aNUL (0x00).static ByteProcessorByteProcessor. FIND_SEMI_COLONAborts on a semicolon(';').Methods in io.netty5.util with parameters of type ByteProcessor Modifier and Type Method Description intAsciiString. forEachByte(int index, int length, ByteProcessor visitor)Iterates over the specified area of this buffer with the specifiedprocessorin ascending order.intAsciiString. forEachByte(ByteProcessor visitor)Iterates over the readable bytes of this buffer with the specifiedprocessorin ascending order.intAsciiString. forEachByteDesc(int index, int length, ByteProcessor visitor)Iterates over the specified area of this buffer with the specifiedprocessorin descending order.intAsciiString. forEachByteDesc(ByteProcessor visitor)Iterates over the readable bytes of this buffer with the specifiedprocessorin descending order.
-