Uses of Interface
io.netty.util.ByteProcessor
-
Packages that use ByteProcessor Package Description io.netty.buffer Abstraction of a byte buffer - the fundamental data structure to represent a low-level binary and text message.io.netty.buffer.search Utility classes for performing efficient substring search withinByteBuf.io.netty.util Utility classes used across multiple packages. -
-
Uses of ByteProcessor in io.netty.buffer
Subinterfaces of ByteProcessor in io.netty.buffer Modifier and Type Interface Description interfaceByteBufProcessorDeprecated.UseByteProcessor.Methods in io.netty.buffer with parameters of type ByteProcessor Modifier and Type Method Description intAbstractByteBuf. forEachByte(int index, int length, ByteProcessor processor)intAbstractByteBuf. forEachByte(ByteProcessor processor)abstract intByteBuf. forEachByte(int index, int length, ByteProcessor processor)Iterates over the specified area of this buffer with the specifiedprocessorin ascending order.abstract intByteBuf. forEachByte(ByteProcessor processor)Iterates over the readable bytes of this buffer with the specifiedprocessorin ascending order.intDuplicatedByteBuf. forEachByte(int index, int length, ByteProcessor processor)Deprecated.intEmptyByteBuf. forEachByte(int index, int length, ByteProcessor processor)intEmptyByteBuf. forEachByte(ByteProcessor processor)intReadOnlyByteBuf. forEachByte(int index, int length, ByteProcessor processor)Deprecated.intSwappedByteBuf. forEachByte(int index, int length, ByteProcessor processor)Deprecated.intSwappedByteBuf. forEachByte(ByteProcessor processor)Deprecated.intWrappedByteBuf. forEachByte(int index, int length, ByteProcessor processor)intWrappedByteBuf. forEachByte(ByteProcessor processor)protected intCompositeByteBuf. forEachByteAsc0(int start, int end, ByteProcessor processor)intAbstractByteBuf. forEachByteDesc(int index, int length, ByteProcessor processor)intAbstractByteBuf. forEachByteDesc(ByteProcessor processor)abstract intByteBuf. forEachByteDesc(int index, int length, ByteProcessor processor)Iterates over the specified area of this buffer with the specifiedprocessorin descending order.abstract intByteBuf. forEachByteDesc(ByteProcessor processor)Iterates over the readable bytes of this buffer with the specifiedprocessorin descending order.intDuplicatedByteBuf. forEachByteDesc(int index, int length, ByteProcessor processor)Deprecated.intEmptyByteBuf. forEachByteDesc(int index, int length, ByteProcessor processor)intEmptyByteBuf. forEachByteDesc(ByteProcessor processor)intReadOnlyByteBuf. forEachByteDesc(int index, int length, ByteProcessor processor)Deprecated.intSwappedByteBuf. forEachByteDesc(int index, int length, ByteProcessor processor)Deprecated.intSwappedByteBuf. forEachByteDesc(ByteProcessor processor)Deprecated.intWrappedByteBuf. forEachByteDesc(int index, int length, ByteProcessor processor)intWrappedByteBuf. forEachByteDesc(ByteProcessor processor)protected intCompositeByteBuf. forEachByteDesc0(int rStart, int rEnd, ByteProcessor processor) -
Uses of ByteProcessor in io.netty.buffer.search
Subinterfaces of ByteProcessor in io.netty.buffer.search Modifier and Type Interface Description interfaceMultiSearchProcessorInterface forSearchProcessorthat implements simultaneous search for multiple strings.interfaceSearchProcessorInterface forByteProcessorthat implements string search.Classes in io.netty.buffer.search that implement ByteProcessor Modifier and Type Class Description static classAhoCorasicSearchProcessorFactory.Processorstatic classBitapSearchProcessorFactory.Processorstatic classKmpSearchProcessorFactory.Processor -
Uses of ByteProcessor in io.netty.util
Classes in io.netty.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.netty.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.netty.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.
-