Package org.apache.commons.net.telnet
Class TelnetCommand
java.lang.Object
org.apache.commons.net.telnet.TelnetCommand
The TelnetCommand class cannot be instantiated and only serves as a storehouse for telnet command constants.
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Abort code.static final int
Abort Output code.static final int
Are You There code.static final int
Break code.static final int
Data mark code.static final int
Request to use option code.static final int
Don't use option code.static final int
Erase Character code.static final int
Erase Line code.static final int
End of file code.static final int
End of record code.static final int
Go Ahead code.static final int
Interpret As Command code.static final int
Interrupt Process code.static final int
The maximum value a command code can have.static final int
No Operation code.static final int
Start subnegotiation code.static final int
End subnegotiation code.static final int
Suspend process code.static final int
Synchronize code.static final int
Agree to use option code.static final int
Refuse to use option code. -
Method Summary
Modifier and TypeMethodDescriptionstatic String
getCommand
(int code) Returns the string representation of the telnet protocol command corresponding to the given command code.static boolean
isValidCommand
(int code) Determines if a given command code is valid.
-
Field Details
-
MAX_COMMAND_VALUE
The maximum value a command code can have. This value is 255.- See Also:
-
IAC
Interpret As Command code. Value is 255 according to RFC 854.- See Also:
-
DONT
Don't use option code. Value is 254 according to RFC 854.- See Also:
-
DO
Request to use option code. Value is 253 according to RFC 854.- See Also:
-
WONT
Refuse to use option code. Value is 252 according to RFC 854.- See Also:
-
WILL
Agree to use option code. Value is 251 according to RFC 854.- See Also:
-
SB
Start subnegotiation code. Value is 250 according to RFC 854.- See Also:
-
GA
Go Ahead code. Value is 249 according to RFC 854.- See Also:
-
EL
Erase Line code. Value is 248 according to RFC 854.- See Also:
-
EC
Erase Character code. Value is 247 according to RFC 854.- See Also:
-
AYT
Are You There code. Value is 246 according to RFC 854.- See Also:
-
AO
Abort Output code. Value is 245 according to RFC 854.- See Also:
-
IP
Interrupt Process code. Value is 244 according to RFC 854.- See Also:
-
BREAK
Break code. Value is 243 according to RFC 854.- See Also:
-
DM
Data mark code. Value is 242 according to RFC 854.- See Also:
-
NOP
No Operation code. Value is 241 according to RFC 854.- See Also:
-
SE
End subnegotiation code. Value is 240 according to RFC 854.- See Also:
-
EOR
End of record code. Value is 239.- See Also:
-
ABORT
Abort code. Value is 238.- See Also:
-
SUSP
Suspend process code. Value is 237.- See Also:
-
EOF
End of file code. Value is 236.- See Also:
-
SYNCH
Synchronize code. Value is 242.- See Also:
-
-
Method Details
-
getCommand
Returns the string representation of the telnet protocol command corresponding to the given command code.- Parameters:
code
- The command code of the telnet protocol command.- Returns:
- The string representation of the telnet protocol command.
-
isValidCommand
Determines if a given command code is valid. Returns true if valid, false if not.- Parameters:
code
- The command code to test.- Returns:
- True if the command code is valid, false if not.
-