Package io.netty.buffer
Interface ByteBufProcessor
-
- All Superinterfaces:
ByteProcessor
@Deprecated public interface ByteBufProcessor extends ByteProcessor
Deprecated.UseByteProcessor.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.netty.util.ByteProcessor
ByteProcessor.IndexNotOfProcessor, ByteProcessor.IndexOfProcessor
-
-
Field Summary
Fields Modifier and Type Field Description static ByteBufProcessorFIND_CRDeprecated.static ByteBufProcessorFIND_CRLFDeprecated.static ByteBufProcessorFIND_LFDeprecated.static ByteBufProcessorFIND_LINEAR_WHITESPACEDeprecated.static ByteBufProcessorFIND_NON_CRDeprecated.static ByteBufProcessorFIND_NON_CRLFDeprecated.static ByteBufProcessorFIND_NON_LFDeprecated.static ByteBufProcessorFIND_NON_LINEAR_WHITESPACEDeprecated.static ByteBufProcessorFIND_NON_NULDeprecated.static ByteBufProcessorFIND_NULDeprecated.-
Fields inherited from interface io.netty.util.ByteProcessor
FIND_ASCII_SPACE, FIND_COMMA, FIND_SEMI_COLON
-
-
Method Summary
-
Methods inherited from interface io.netty.util.ByteProcessor
process
-
-
-
-
Field Detail
-
FIND_NUL
@Deprecated static final ByteBufProcessor FIND_NUL
Deprecated.
-
FIND_NON_NUL
@Deprecated static final ByteBufProcessor FIND_NON_NUL
Deprecated.
-
FIND_CR
@Deprecated static final ByteBufProcessor FIND_CR
Deprecated.
-
FIND_NON_CR
@Deprecated static final ByteBufProcessor FIND_NON_CR
Deprecated.
-
FIND_LF
@Deprecated static final ByteBufProcessor FIND_LF
Deprecated.
-
FIND_NON_LF
@Deprecated static final ByteBufProcessor FIND_NON_LF
Deprecated.
-
FIND_CRLF
@Deprecated static final ByteBufProcessor FIND_CRLF
Deprecated.
-
FIND_NON_CRLF
@Deprecated static final ByteBufProcessor FIND_NON_CRLF
Deprecated.
-
FIND_LINEAR_WHITESPACE
@Deprecated static final ByteBufProcessor FIND_LINEAR_WHITESPACE
Deprecated.
-
FIND_NON_LINEAR_WHITESPACE
@Deprecated static final ByteBufProcessor FIND_NON_LINEAR_WHITESPACE
Deprecated.
-
-