| 程序包 | 说明 |
|---|---|
| com.jn.langx.util |
This package contain all most utility classes for java coding
|
| 限定符和类型 | 类和说明 |
|---|---|
static class |
ByteProcessor.IndexNotOfProcessor
A
ByteProcessor which finds the first appearance which is not of a specific byte. |
static class |
ByteProcessor.IndexOfProcessor
A
ByteProcessor which finds the first appearance of a specific byte. |
| 限定符和类型 | 字段和说明 |
|---|---|
static ByteProcessor |
ByteProcessor.FIND_ASCII_SPACE
Aborts on a ascii space character (
' '). |
static ByteProcessor |
ByteProcessor.FIND_COMMA
Aborts on a comma
(','). |
static ByteProcessor |
ByteProcessor.FIND_CR
Aborts on a
CR ('\r'). |
static ByteProcessor |
ByteProcessor.FIND_CRLF
Aborts on a
CR ('\r') or a LF ('\n'). |
static ByteProcessor |
ByteProcessor.FIND_LF
Aborts on a
LF ('\n'). |
static ByteProcessor |
ByteProcessor.FIND_LINEAR_WHITESPACE
Aborts on a linear whitespace (a (
' ' or a '\t'). |
static ByteProcessor |
ByteProcessor.FIND_NON_CR
Aborts on a non-
CR ('\r'). |
static ByteProcessor |
ByteProcessor.FIND_NON_CRLF
Aborts on a byte which is neither a
CR ('\r') nor a LF ('\n'). |
static ByteProcessor |
ByteProcessor.FIND_NON_LF
Aborts on a non-
LF ('\n'). |
static ByteProcessor |
ByteProcessor.FIND_NON_LINEAR_WHITESPACE
Aborts on a byte which is not a linear whitespace (neither
' ' nor '\t'). |
static ByteProcessor |
ByteProcessor.FIND_NON_NUL
Aborts on a non-
NUL (0x00). |
static ByteProcessor |
ByteProcessor.FIND_NUL
Aborts on a
NUL (0x00). |
static ByteProcessor |
ByteProcessor.FIND_SEMI_COLON
Aborts on a semicolon
(';'). |
Copyright © 2022. All rights reserved.