Modifier and Type | Class and Description |
---|---|
public static class | ByteProcessor.
A |
public static class | ByteProcessor.
A |
Modifier and Type | Field and Description |
---|---|
public static final ByteProcessor | FIND_ASCII_SPACE
Aborts on a ascii space character ( |
public static final ByteProcessor | FIND_COMMA
Aborts on a comma |
public static final ByteProcessor | FIND_CR
Aborts on a |
public static final ByteProcessor | FIND_CRLF
Aborts on a |
public static final ByteProcessor | FIND_LF
Aborts on a |
public static final ByteProcessor | FIND_LINEAR_WHITESPACE
Aborts on a linear whitespace (a ( |
public static final ByteProcessor | FIND_NON_CR
Aborts on a non- |
public static final ByteProcessor | FIND_NON_CRLF
Aborts on a byte which is neither a |
public static final ByteProcessor | FIND_NON_LF
Aborts on a non- |
public static final ByteProcessor | FIND_NON_LINEAR_WHITESPACE
Aborts on a byte which is not a linear whitespace (neither |
public static final ByteProcessor | FIND_NON_NUL
Aborts on a non- |
public static final ByteProcessor | FIND_NUL
Aborts on a |
public static final ByteProcessor | FIND_SEMI_COLON
Aborts on a semicolon |
Modifier and Type | Method and Description |
---|---|
public boolean | Returns: true if the processor wants to continue the loop and handle the next byte in the buffer.
false if the processor wants to stop handling bytes and abort the loop.
|
FIND_ASCII_SPACE | back to summary |
---|---|
public static final ByteProcessor FIND_ASCII_SPACE Aborts on a ascii space character ( |
FIND_COMMA | back to summary |
---|---|
public static final ByteProcessor FIND_COMMA Aborts on a comma |
FIND_CR | back to summary |
---|---|
public static final ByteProcessor FIND_CR Aborts on a |
FIND_CRLF | back to summary |
---|---|
public static final ByteProcessor FIND_CRLF Aborts on a |
FIND_LF | back to summary |
---|---|
public static final ByteProcessor FIND_LF Aborts on a |
FIND_LINEAR_WHITESPACE | back to summary |
---|---|
public static final ByteProcessor FIND_LINEAR_WHITESPACE Aborts on a linear whitespace (a ( |
FIND_NON_CR | back to summary |
---|---|
public static final ByteProcessor FIND_NON_CR Aborts on a non- |
FIND_NON_CRLF | back to summary |
---|---|
public static final ByteProcessor FIND_NON_CRLF Aborts on a byte which is neither a |
FIND_NON_LF | back to summary |
---|---|
public static final ByteProcessor FIND_NON_LF Aborts on a non- |
FIND_NON_LINEAR_WHITESPACE | back to summary |
---|---|
public static final ByteProcessor FIND_NON_LINEAR_WHITESPACE Aborts on a byte which is not a linear whitespace (neither |
FIND_NON_NUL | back to summary |
---|---|
public static final ByteProcessor FIND_NON_NUL Aborts on a non- |
FIND_NUL | back to summary |
---|---|
public static final ByteProcessor FIND_NUL Aborts on a |
FIND_SEMI_COLON | back to summary |
---|---|
public static final ByteProcessor FIND_SEMI_COLON Aborts on a semicolon |
process | back to summary |
---|---|
public boolean process(byte value) throws Exception
|
ByteProcessor
which finds the first appearance which is not of a specific byte.
Modifier and Type | Field and Description |
---|---|
private final byte |
Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
public boolean |
byteToNotFind | back to summary |
---|---|
private final byte byteToNotFind |
IndexNotOfProcessor | back to summary |
---|---|
public IndexNotOfProcessor(byte byteToNotFind) |
process | back to summary |
---|---|
public boolean process(byte value) Implements io.
|
ByteProcessor
which finds the first appearance of a specific byte.
Modifier and Type | Field and Description |
---|---|
private final byte |
Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
public boolean |
byteToFind | back to summary |
---|---|
private final byte byteToFind |
IndexOfProcessor | back to summary |
---|---|
public IndexOfProcessor(byte byteToFind) |
process | back to summary |
---|---|
public boolean process(byte value) Implements io.
|