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 ByteBufProcessor
FIND_CR
Deprecated.static ByteBufProcessor
FIND_CRLF
Deprecated.static ByteBufProcessor
FIND_LF
Deprecated.static ByteBufProcessor
FIND_LINEAR_WHITESPACE
Deprecated.static ByteBufProcessor
FIND_NON_CR
Deprecated.static ByteBufProcessor
FIND_NON_CRLF
Deprecated.static ByteBufProcessor
FIND_NON_LF
Deprecated.static ByteBufProcessor
FIND_NON_LINEAR_WHITESPACE
Deprecated.static ByteBufProcessor
FIND_NON_NUL
Deprecated.static ByteBufProcessor
FIND_NUL
Deprecated.-
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.
-
-