Uses of Class
io.netty.handler.codec.smtp.SmtpCommand
-
Packages that use SmtpCommand Package Description io.netty.handler.codec.smtp SMTP codec. -
-
Uses of SmtpCommand in io.netty.handler.codec.smtp
Fields in io.netty.handler.codec.smtp declared as SmtpCommand Modifier and Type Field Description static SmtpCommand
SmtpCommand. AUTH
static SmtpCommand
SmtpCommand. DATA
static SmtpCommand
SmtpCommand. EHLO
static SmtpCommand
SmtpCommand. EMPTY
static SmtpCommand
SmtpCommand. EXPN
static SmtpCommand
SmtpCommand. HELO
static SmtpCommand
SmtpCommand. HELP
static SmtpCommand
SmtpCommand. MAIL
static SmtpCommand
SmtpCommand. NOOP
static SmtpCommand
SmtpCommand. QUIT
static SmtpCommand
SmtpCommand. RCPT
static SmtpCommand
SmtpCommand. RSET
static SmtpCommand
SmtpCommand. VRFY
Methods in io.netty.handler.codec.smtp that return SmtpCommand Modifier and Type Method Description SmtpCommand
DefaultSmtpRequest. command()
SmtpCommand
SmtpRequest. command()
Returns theSmtpCommand
that belongs to the request.static SmtpCommand
SmtpCommand. valueOf(java.lang.CharSequence commandName)
Returns theSmtpCommand
for the given command name.Constructors in io.netty.handler.codec.smtp with parameters of type SmtpCommand Constructor Description DefaultSmtpRequest(SmtpCommand command)
Creates a new instance with the given command and no parameters.DefaultSmtpRequest(SmtpCommand command, java.lang.CharSequence... parameters)
Creates a new instance with the given command and parameters.
-