Uses of Class
io.netty.handler.codec.smtp.SmtpCommand
Packages that use SmtpCommand
-
Uses of SmtpCommand in io.netty.handler.codec.smtp
Fields in io.netty.handler.codec.smtp declared as SmtpCommandModifier and TypeFieldDescriptionstatic final SmtpCommand
SmtpCommand.AUTH
private final SmtpCommand
DefaultSmtpRequest.command
static final SmtpCommand
SmtpCommand.DATA
static final SmtpCommand
SmtpCommand.EHLO
static final SmtpCommand
SmtpCommand.EMPTY
static final SmtpCommand
SmtpCommand.EXPN
static final SmtpCommand
SmtpCommand.HELO
static final SmtpCommand
SmtpCommand.HELP
static final SmtpCommand
SmtpCommand.MAIL
static final SmtpCommand
SmtpCommand.NOOP
static final SmtpCommand
SmtpCommand.QUIT
static final SmtpCommand
SmtpCommand.RCPT
static final SmtpCommand
SmtpCommand.RSET
static final SmtpCommand
SmtpCommand.VRFY
Fields in io.netty.handler.codec.smtp with type parameters of type SmtpCommandModifier and TypeFieldDescriptionprivate static final Map
<String, SmtpCommand> SmtpCommand.COMMANDS
Methods in io.netty.handler.codec.smtp that return SmtpCommandModifier and TypeMethodDescriptionDefaultSmtpRequest.command()
SmtpRequest.command()
Returns theSmtpCommand
that belongs to the request.static SmtpCommand
SmtpCommand.valueOf
(CharSequence commandName) Returns theSmtpCommand
for the given command name.Constructors in io.netty.handler.codec.smtp with parameters of type SmtpCommandModifierConstructorDescriptionDefaultSmtpRequest
(SmtpCommand command) Creates a new instance with the given command and no parameters.DefaultSmtpRequest
(SmtpCommand command, CharSequence... parameters) Creates a new instance with the given command and parameters.(package private)
DefaultSmtpRequest
(SmtpCommand command, List<CharSequence> parameters)