Package | Description |
---|---|
io.netty.buffer |
Abstraction of a byte buffer - the fundamental data structure
to represent a low-level binary and text message.
|
io.netty.handler.codec.smtp |
SMTP codec.
|
io.netty.handler.codec.stomp |
STOMP codec
|
io.netty.util |
Utility classes used across multiple packages.
|
io.netty.util.internal |
Internal-use-only utilities which is not allowed to be used
outside Netty.
|
Modifier and Type | Method and Description |
---|---|
static void |
ByteBufUtil.copy(AsciiString src,
ByteBuf dst)
|
static void |
ByteBufUtil.copy(AsciiString src,
int srcIdx,
ByteBuf dst,
int length)
|
static void |
ByteBufUtil.copy(AsciiString src,
int srcIdx,
ByteBuf dst,
int dstIdx,
int length)
|
Modifier and Type | Method and Description |
---|---|
AsciiString |
SmtpCommand.name()
Return the command name.
|
Modifier and Type | Field and Description |
---|---|
static AsciiString |
StompHeaders.ACCEPT_VERSION |
static AsciiString |
StompHeaders.ACK |
static AsciiString |
StompHeaders.CONTENT_LENGTH |
static AsciiString |
StompHeaders.CONTENT_TYPE |
static AsciiString |
StompHeaders.DESTINATION |
static AsciiString |
StompHeaders.HEART_BEAT |
static AsciiString |
StompHeaders.HOST |
static AsciiString |
StompHeaders.ID |
static AsciiString |
StompHeaders.LOGIN |
static AsciiString |
StompHeaders.MESSAGE |
static AsciiString |
StompHeaders.MESSAGE_ID |
static AsciiString |
StompHeaders.PASSCODE |
static AsciiString |
StompHeaders.RECEIPT |
static AsciiString |
StompHeaders.RECEIPT_ID |
static AsciiString |
StompHeaders.SERVER |
static AsciiString |
StompHeaders.SESSION |
static AsciiString |
StompHeaders.SUBSCRIPTION |
static AsciiString |
StompHeaders.TRANSACTION |
static AsciiString |
StompHeaders.VERSION |
Modifier and Type | Field and Description |
---|---|
static AsciiString |
AsciiString.EMPTY_STRING |
Modifier and Type | Method and Description |
---|---|
AsciiString |
AsciiString.concat(CharSequence string)
Concatenates this string and the specified string.
|
static AsciiString |
AsciiString.of(CharSequence string)
Returns an
AsciiString containing the given character sequence. |
AsciiString |
AsciiString.replace(char oldChar,
char newChar)
Copies this string replacing occurrences of the specified character with another character.
|
AsciiString[] |
AsciiString.split(char delim)
Splits the specified
String with the specified delimiter.. |
AsciiString[] |
AsciiString.split(String expr,
int max)
Splits this string using the supplied regular expression
expr . |
AsciiString |
AsciiString.subSequence(int start)
Copies a range of characters into a new string.
|
AsciiString |
AsciiString.subSequence(int start,
int end)
Copies a range of characters into a new string.
|
AsciiString |
AsciiString.subSequence(int start,
int end,
boolean copy)
Either copy or share a subset of underlying sub-sequence of bytes.
|
AsciiString |
AsciiString.toLowerCase()
Converts the characters in this string to lowercase, using the default Locale.
|
AsciiString |
AsciiString.toUpperCase()
Converts the characters in this string to uppercase, using the default Locale.
|
AsciiString |
AsciiString.trim()
Copies this string removing white space characters from the beginning and end of the string.
|
Modifier and Type | Field and Description |
---|---|
static AsciiString[] |
EmptyArrays.EMPTY_ASCII_STRINGS |
Copyright © 2008-2017 The Netty Project. All Rights Reserved.