程序包 | 说明 |
---|---|
com.sh.mail.mime4j.stream | |
com.sh.mail.mime4j.util |
限定符和类型 | 方法和说明 |
---|---|
ByteSequence |
RawField.getRaw() |
ByteSequence |
Field.getRaw()
Gets original (raw) representation of the field, if available,
null otherwise. |
限定符和类型 | 方法和说明 |
---|---|
void |
RawFieldParser.copyContent(ByteSequence buf,
ParserCursor cursor,
java.util.BitSet delimiters,
java.lang.StringBuilder dst)
Transfers content into the destination buffer until a whitespace character, a comment,
or any of the given delimiters is encountered.
|
void |
RawFieldParser.copyQuotedContent(ByteSequence buf,
ParserCursor cursor,
java.lang.StringBuilder dst)
Transfers content enclosed with quote marks into the destination buffer.
|
RawField |
RawFieldParser.parseField(ByteSequence raw)
Parses the sequence of bytes into
RawField . |
NameValuePair |
RawFieldParser.parseParameter(ByteSequence buf,
ParserCursor cursor)
Parses the sequence of bytes containing a field parameter delimited with semicolon into
NameValuePair . |
java.util.List<NameValuePair> |
RawFieldParser.parseParameters(ByteSequence buf,
ParserCursor cursor)
Parses the sequence of bytes containing field parameters delimited with semicolon into
a list of
NameValuePair s. |
RawBody |
RawFieldParser.parseRawBody(ByteSequence buf,
ParserCursor cursor)
Parses the sequence of bytes containing a value with parameters into
RawBody . |
java.lang.String |
RawFieldParser.parseToken(ByteSequence buf,
ParserCursor cursor,
java.util.BitSet delimiters)
Extracts from the sequence of bytes a token terminated with any of the given delimiters
discarding semantically insignificant whitespace characters and comments.
|
java.lang.String |
RawFieldParser.parseValue(ByteSequence buf,
ParserCursor cursor,
java.util.BitSet delimiters)
Extracts from the sequence of bytes a value which can be enclosed in quote marks and
terminated with any of the given delimiters discarding semantically insignificant
whitespace characters and comments.
|
void |
RawFieldParser.skipAllWhiteSpace(ByteSequence buf,
ParserCursor cursor)
Skips semantically insignificant whitespace characters and comments and moves the cursor
to the closest semantically significant non-whitespace character.
|
void |
RawFieldParser.skipComment(ByteSequence buf,
ParserCursor cursor)
Skips semantically insignificant content if the current position is positioned at the
beginning of a comment and moves the cursor past the end of the comment.
|
void |
RawFieldParser.skipWhiteSpace(ByteSequence buf,
ParserCursor cursor)
Skips semantically insignificant whitespace characters and moves the cursor to the closest
non-whitespace character.
|
限定符和类型 | 类和说明 |
---|---|
class |
ByteArrayBuffer
Description:
Title:首亨软件 - TSS/CRM等
|
限定符和类型 | 字段和说明 |
---|---|
static ByteSequence |
ByteSequence.EMPTY
An empty byte sequence.
|
限定符和类型 | 方法和说明 |
---|---|
static ByteSequence |
ContentUtil.encode(java.nio.charset.Charset charset,
java.lang.String string)
Encodes the specified string into an immutable sequence of bytes using
the specified charset.
|
static ByteSequence |
ContentUtil.encode(java.lang.String string)
Encodes the specified string into an immutable sequence of bytes using
the US-ASCII charset.
|
限定符和类型 | 方法和说明 |
---|---|
static java.lang.String |
ContentUtil.decode(ByteSequence byteSequence)
Decodes the specified sequence of bytes into a string using the US-ASCII
charset.
|
static java.lang.String |
ContentUtil.decode(ByteSequence byteSequence,
int offset,
int length)
Decodes a sub-sequence of the specified sequence of bytes into a string
using the US-ASCII charset.
|
static java.lang.String |
ContentUtil.decode(java.nio.charset.Charset charset,
ByteSequence byteSequence)
Decodes the specified sequence of bytes into a string using the specified
charset.
|
static java.lang.String |
ContentUtil.decode(java.nio.charset.Charset charset,
ByteSequence byteSequence,
int offset,
int length)
Decodes a sub-sequence of the specified sequence of bytes into a string
using the specified charset.
|