public interface ByteProcessor
Modifier and Type | Interface and Description |
---|---|
static class |
ByteProcessor.IndexNotOfProcessor
一个 ByteProcessor ,它发现不是特定字节的第一个外观。
|
static class |
ByteProcessor.IndexOfProcessor
一个 ByteProcessor 找到特定字节的第一次出现。
|
Modifier and Type | Field and Description |
---|---|
static ByteProcessor |
FIND_ASCII_SPACE
' ' ascii空格字符(
' ' )。
|
static ByteProcessor |
FIND_COMMA
用逗号中止
(',') 。
|
static ByteProcessor |
FIND_CR
在
CR ('\r') 上中止。
|
static ByteProcessor |
FIND_CRLF
CR ('\r') 或
LF ('\n') 。
|
static ByteProcessor |
FIND_LF
中止
LF ('\n') 。
|
static ByteProcessor |
FIND_LINEAR_WHITESPACE
' ' 线性空白(a(
' ' 或
'\t' ))。
|
static ByteProcessor |
FIND_NON_CR
在非
CR ('\r') 上中止。
|
static ByteProcessor |
FIND_NON_CRLF
中止一个既不是
CR ('\r') 也不是
LF ('\n') 。
|
static ByteProcessor |
FIND_NON_LF
在非
LF ('\n') 上中止。
|
static ByteProcessor |
FIND_NON_LINEAR_WHITESPACE
中止一个不是线性空白的字节(既不是
' ' 也不是
'\t' )。
|
static ByteProcessor |
FIND_NON_NUL
在非
NUL (0x00) 上中止。
|
static ByteProcessor |
FIND_NUL
NUL (0x00) 。
|
static ByteProcessor |
FIND_SEMI_COLON
用分号
(';') 中止。
|
static final ByteProcessor FIND_NUL
NUL (0x00)
上中止。
static final ByteProcessor FIND_NON_NUL
NUL (0x00)
上中止。
static final ByteProcessor FIND_CR
CR ('\r')
上中止。
static final ByteProcessor FIND_NON_CR
CR ('\r')
上中止。
static final ByteProcessor FIND_LF
LF ('\n')
。
static final ByteProcessor FIND_NON_LF
LF ('\n')
上中止。
static final ByteProcessor FIND_SEMI_COLON
(';')
中止。
static final ByteProcessor FIND_COMMA
(',')
。
static final ByteProcessor FIND_ASCII_SPACE
' '
ascii空格字符(
' '
)。
static final ByteProcessor FIND_CRLF
CR ('\r')
或
LF ('\n')
。
static final ByteProcessor FIND_NON_CRLF
CR ('\r')
也不是
LF ('\n')
。
static final ByteProcessor FIND_LINEAR_WHITESPACE
' '
线性空白(a(
' '
或
'\t'
))。
static final ByteProcessor FIND_NON_LINEAR_WHITESPACE
' '
也不是
'\t'
)。
Copyright © 2008–2018 The Netty Project. All rights reserved.