Uses of Interface
io.netty.util.ByteProcessor
Packages that use ByteProcessor
Package
Description
Abstraction of a byte buffer - the fundamental data structure
to represent a low-level binary and text message.
Utility classes for performing efficient substring search within
ByteBuf.Utility classes used across multiple packages.
-
Uses of ByteProcessor in io.netty.buffer
Subinterfaces of ByteProcessor in io.netty.bufferMethods in io.netty.buffer with parameters of type ByteProcessorModifier and TypeMethodDescriptionintAbstractByteBuf.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.searchModifier and TypeInterfaceDescriptioninterfaceInterface forSearchProcessorthat implements simultaneous search for multiple strings.interfaceInterface forByteProcessorthat implements string search.Classes in io.netty.buffer.search that implement ByteProcessorModifier and TypeClassDescriptionstatic classstatic classstatic class -
Uses of ByteProcessor in io.netty.util
Classes in io.netty.util that implement ByteProcessorModifier and TypeClassDescriptionstatic classAByteProcessorwhich finds the first appearance which is not of a specific byte.static classAByteProcessorwhich finds the first appearance of a specific byte.Fields in io.netty.util declared as ByteProcessorModifier and TypeFieldDescriptionstatic final ByteProcessorByteProcessor.FIND_ASCII_SPACEAborts on a ascii space character (' ').static final ByteProcessorByteProcessor.FIND_COMMAAborts on a comma(',').static final ByteProcessorByteProcessor.FIND_CRAborts on aCR ('\r').static final ByteProcessorByteProcessor.FIND_CRLFAborts on aCR ('\r')or aLF ('\n').static final ByteProcessorByteProcessor.FIND_LFAborts on aLF ('\n').static final ByteProcessorByteProcessor.FIND_LINEAR_WHITESPACEAborts on a linear whitespace (a (' 'or a'\t').static final ByteProcessorByteProcessor.FIND_NON_CRAborts on a non-CR ('\r').static final ByteProcessorByteProcessor.FIND_NON_CRLFAborts on a byte which is neither aCR ('\r')nor aLF ('\n').static final ByteProcessorByteProcessor.FIND_NON_LFAborts on a non-LF ('\n').static final ByteProcessorByteProcessor.FIND_NON_LINEAR_WHITESPACEAborts on a byte which is not a linear whitespace (neither' 'nor'\t').static final ByteProcessorByteProcessor.FIND_NON_NULAborts on a non-NUL (0x00).static final ByteProcessorByteProcessor.FIND_NULAborts on aNUL (0x00).static final ByteProcessorByteProcessor.FIND_SEMI_COLONAborts on a semicolon(';').Methods in io.netty.util with parameters of type ByteProcessorModifier and TypeMethodDescriptionintAsciiString.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.
ByteProcessor.