Skip navigation links
Secure iNet Factory
A B C D E F G H I J K L M N O P Q R S T U V W X Z 

T

TAB - Static variable in class com.jscape.inet.mime.MimeConstants
Represents byte value for tab.
taskEnd(TelnetTaskEndEvent) - Method in interface com.jscape.inet.telnet.TelnetScriptListener
Invoked when command for a TelnetTask completes execution.
taskFailed(TelnetTaskFailedEvent) - Method in interface com.jscape.inet.telnet.TelnetScriptListener
Invoked when command for a TelnetTask fails execution.
taskStart(TelnetTaskStartEvent) - Method in interface com.jscape.inet.telnet.TelnetScriptListener
Invoked when command for a TelnetTask begins execution.
taskTimeout(TelnetTaskTimeoutEvent) - Method in interface com.jscape.inet.telnet.TelnetScriptListener
Invoked when a TelnetTask exceeds timeout waiting for end prompt.
TBCCommand - Class in com.jscape.inet.terminal.commands
 
TC_AO - Static variable in class com.jscape.inet.telnet.Telnet
Telnet command : Abort output
TC_AYT - Static variable in class com.jscape.inet.telnet.Telnet
Telnet command : Are You There
TC_BRK - Static variable in class com.jscape.inet.telnet.Telnet
Telnet command : Break.
NVT character BRK.
TC_DM - Static variable in class com.jscape.inet.telnet.Telnet
Telnet command : Data Mark.
The data stream portion of a Synch.
TC_DO - Static variable in class com.jscape.inet.telnet.Telnet
Telnet command : DO.
Indicates the request that the other party perform, or confirmation that you are expecting the other party to perform, the indicated option.
TC_DONT - Static variable in class com.jscape.inet.telnet.Telnet
Telnet command : DON'T.
Indicates the demand that the other party stop performing, or confirmation that you are no longer expecting the other party to perform, the indicated option.
TC_GA - Static variable in class com.jscape.inet.telnet.Telnet
Telnet command : Go ahead
TC_IP - Static variable in class com.jscape.inet.telnet.Telnet
Telnet command : Interrupt Process.
TC_NOP - Static variable in class com.jscape.inet.telnet.Telnet
Telnet command : No operation.
TC_SB - Static variable in class com.jscape.inet.telnet.Telnet
Telnet command : Subnegotiation.
Indicates that what follows is subnegotiation of the indicated option.
TC_SE - Static variable in class com.jscape.inet.telnet.Telnet
Telnet command : End of subnegotiation parameters.
TC_WILL - Static variable in class com.jscape.inet.telnet.Telnet
Telnet command : WILL.
Indicates the desire to begin performing, or confirmation that you are now performing, the indicated option.
TC_WONT - Static variable in class com.jscape.inet.telnet.Telnet
Telnet command : WON'T.
Indicates the refusal to perform, or continue performing, the indicated option.
Telnet - Class in com.jscape.inet.telnet
Implements the basic functionality of a Telnet client as defined in RFC 854.
Telnet(String) - Constructor for class com.jscape.inet.telnet.Telnet
Constructs Telnet object for connection to specified host.
Telnet(String, int) - Constructor for class com.jscape.inet.telnet.Telnet
Constructs Telnet object.
Telnet.ByteDecoder - Class in com.jscape.inet.telnet
Byte Decoder
Telnet.DefaultDecoder - Class in com.jscape.inet.telnet
Default Decoder
Telnet.EUCKoreanDecoder - Class in com.jscape.inet.telnet
EUC Korean Decoder
Telnet.UTF8Decoder - Class in com.jscape.inet.telnet
UTF8 Decoder
TelnetAdapter - Class in com.jscape.inet.telnet
Implements methods for capturing events sourced from Telnet class.
TelnetAdapter() - Constructor for class com.jscape.inet.telnet.TelnetAdapter
 
TelnetConnectedEvent - Class in com.jscape.inet.telnet
Fired by Telnet instance upon successfull connection to Telnet server.
TelnetConnectedEvent(Object, String, int) - Constructor for class com.jscape.inet.telnet.TelnetConnectedEvent
Creates TelnetConnectedEvent.
TelnetDataReceivedEvent - Class in com.jscape.inet.telnet
Fired by Telnet instance when Telnet server sends data to client.
TelnetDataReceivedEvent(Object, String) - Constructor for class com.jscape.inet.telnet.TelnetDataReceivedEvent
Creates a new TelnetDataReceivedEvent instance.
TelnetDataReceivedFactory - Class in com.jscape.inet.telnet
Factory class for maintaining TelnetDataReceivedEvent in memory.
TelnetDisconnectedEvent - Class in com.jscape.inet.telnet
Fired by Telnet instance upon disconnect from server.
TelnetDisconnectedEvent(Object, String, int) - Constructor for class com.jscape.inet.telnet.TelnetDisconnectedEvent
Created TelnetDisconnectedEvent.
TelnetException - Exception in com.jscape.inet.telnet
TelnetException is thrown by many methods of Telnet class.
TelnetException(String) - Constructor for exception com.jscape.inet.telnet.TelnetException
Creates exception with specified message string.
TelnetException(String, Throwable) - Constructor for exception com.jscape.inet.telnet.TelnetException
Creates exception with specified message string and source exception
TelnetException(Throwable) - Constructor for exception com.jscape.inet.telnet.TelnetException
 
TelnetInputStream - Class in com.jscape.inet.telnet
Specialised input stream used to interpret telnet commands in ASCII stream.
TelnetInputStream(Telnet, InputStream) - Constructor for class com.jscape.inet.telnet.TelnetInputStream
Creates a new TelnetInputStream object.
TelnetListener - Interface in com.jscape.inet.telnet
Implements methods for capturing events sourced from Telnet class.
TelnetOption - Class in com.jscape.inet.telnet
TelnetOption class enables developers to implement and use existing and future telnet protocol options.
TelnetOption(int) - Constructor for class com.jscape.inet.telnet.TelnetOption
Creates a new TelnetOption instance.
TelnetOutputStream - Class in com.jscape.inet.telnet
Specialised output stream used to embed Telnet commands in ASCII stream.
TelnetOutputStream(OutputStream) - Constructor for class com.jscape.inet.telnet.TelnetOutputStream
Creates a new TelnetOutputStream instance.
TelnetOutputStream(OutputStream, String) - Constructor for class com.jscape.inet.telnet.TelnetOutputStream
 
TelnetScript - Class in com.jscape.inet.telnet
The TelnetScript class provides a simple way of running a set of batch scripted commands against a TelnetServer.
TelnetScript(Telnet) - Constructor for class com.jscape.inet.telnet.TelnetScript
Constructs a new TelnetScript instance.
TelnetScript(Telnet, String) - Constructor for class com.jscape.inet.telnet.TelnetScript
Constructs a new TelnetScript instance.
TelnetScriptListener - Interface in com.jscape.inet.telnet
Implements methods for capturing events sourced from TelnetScript class.
TelnetSession - Class in com.jscape.inet.telnet
Convenience class for automating communications with a Telnet server.
TelnetSession(String) - Constructor for class com.jscape.inet.telnet.TelnetSession
Creates a new TelnetSession instance.
TelnetSession(String, boolean) - Constructor for class com.jscape.inet.telnet.TelnetSession
Creates a new TelnetSession instance.
TelnetSession(String, String) - Constructor for class com.jscape.inet.telnet.TelnetSession
Creates a new TelnetSession instance.
TelnetSession(String, String, boolean) - Constructor for class com.jscape.inet.telnet.TelnetSession
Creates a new TelnetSession instance.
TelnetSession(String, int, boolean) - Constructor for class com.jscape.inet.telnet.TelnetSession
Creates a new TelnetSession instance.
TelnetSession(String, int) - Constructor for class com.jscape.inet.telnet.TelnetSession
Creates a new TelnetSession instance.
TelnetSession(String, int, String) - Constructor for class com.jscape.inet.telnet.TelnetSession
Creates a new TelnetSession instance.
TelnetSession(String, int, String, boolean) - Constructor for class com.jscape.inet.telnet.TelnetSession
Creates a new TelnetSession instance.
TelnetSsh - Class in com.jscape.inet.telnetssh
Implements the basic functionality of a Telnet client as defined in RFC 854 tunnelling all data thru a secure SSH connection.
TelnetSsh(SshParameters, String) - Constructor for class com.jscape.inet.telnetssh.TelnetSsh
Creates a new TelnetSsh instance.
TelnetSsl - Class in com.jscape.inet.telnetssl
Implements a secure telnet client using SSL/TLS.
TelnetSsl(String) - Constructor for class com.jscape.inet.telnetssl.TelnetSsl
Constructs a new TelnetSsl instance
TelnetSsl(String, int) - Constructor for class com.jscape.inet.telnetssl.TelnetSsl
Constructs a new TelnetSsl instance
TelnetTask - Class in com.jscape.inet.telnet
The TelnetTask class represents a command to be executed in batch (non-interactive) mode.
TelnetTask(String, String, String, String) - Constructor for class com.jscape.inet.telnet.TelnetTask
Constructs a new TelnetTask instance.
TelnetTask(String, String, String) - Constructor for class com.jscape.inet.telnet.TelnetTask
Constructs a new TelnetTask instance.
TelnetTaskEndEvent - Class in com.jscape.inet.telnet
Fired when a TelnetTask has completed
TelnetTaskEndEvent(Object, TelnetTask) - Constructor for class com.jscape.inet.telnet.TelnetTaskEndEvent
Creates a new instance of TelnetTaskEndEvent
TelnetTaskFailedEvent - Class in com.jscape.inet.telnet
Fired when a TelnetTask has failed to complete
TelnetTaskFailedEvent(Object, TelnetTask, Exception) - Constructor for class com.jscape.inet.telnet.TelnetTaskFailedEvent
Creates a new instance of TelnetTaskFailedEvent.
TelnetTaskStartEvent - Class in com.jscape.inet.telnet
Fired when a TelnetTask is started
TelnetTaskStartEvent(Object, TelnetTask) - Constructor for class com.jscape.inet.telnet.TelnetTaskStartEvent
Creates a new instance of TelnetTaskStartEvent
TelnetTaskTimeoutEvent - Class in com.jscape.inet.telnet
Fired when a TelnetTask has exceeded the defined timeout
TelnetTaskTimeoutEvent(Object, TelnetTask) - Constructor for class com.jscape.inet.telnet.TelnetTaskTimeoutEvent
Creates a new instance of TelnetTaskEndEvent
TelnetTaskTimeoutException - Exception in com.jscape.inet.telnet
A subclass of TelnetException, this exception is thrown by a TelnetSession instance when using the TelnetSession#send or TelnetSession#sendWait methods and the TelnetTask exceeds the maximum defined timeout waiting for either the start prompt or end prompt.
TelnetTaskTimeoutException(TelnetTask) - Constructor for exception com.jscape.inet.telnet.TelnetTaskTimeoutException
Constructs a new TelnetTaskTimeoutException instance
Terminal - Class in com.jscape.inet.terminal
Main emulator class.
Terminal(String, String, int, int, int, int) - Constructor for class com.jscape.inet.terminal.Terminal
Creates Terminal object giving its name, host and port to connect, screen dimensions and history size.
Terminal(String, int, int) - Constructor for class com.jscape.inet.terminal.Terminal
Creates Terminal object giving host and port to connect, history size.
Terminal(String, int, int, int) - Constructor for class com.jscape.inet.terminal.Terminal
Creates Terminal object giving host and port to connect, screen dimensions.
Terminal(String, int) - Constructor for class com.jscape.inet.terminal.Terminal
Creates Terminal object giving host and port to connect, screen dimensions.
TerminalAdapter - Class in com.jscape.inet.terminal
Represents default (void) implementation of TerminalListener.
TerminalAdapter() - Constructor for class com.jscape.inet.terminal.TerminalAdapter
 
TerminalEvent - Interface in com.jscape.inet.terminal.events
Base interface for Terminal events.
TerminalListener - Interface in com.jscape.inet.terminal
Base interface for Terminal events handling.
TerminalType - Class in com.jscape.inet.telnet.options
Represents the TERMINAL TYPE Telnet option as defined in RFC 1091.
TerminalType() - Constructor for class com.jscape.inet.telnet.options.TerminalType
Creates a new TerminalType instance.
TerminalType(String) - Constructor for class com.jscape.inet.telnet.options.TerminalType
Creates a new TerminalType instance.
Text - Class in com.jscape.inet.dns.record
Text record is used to hold descriptive text.
Text() - Constructor for class com.jscape.inet.dns.record.Text
 
THREE_DES_CBC - Static variable in class com.jscape.inet.ssh.protocol.v2.marshaling.algorithms.JceEncryptions
 
THREE_DES_CTR - Static variable in class com.jscape.inet.ssh.protocol.v2.marshaling.algorithms.JceEncryptions
 
TimingMark - Class in com.jscape.inet.telnet.options
Telnet TIMING_MARK option as described in RFC 860.
TimingMark() - Constructor for class com.jscape.inet.telnet.options.TimingMark
Creates a new TimingMark instance.
toCellArray() - Method in class com.jscape.inet.terminal.Row
Represents current row as array of Cell objects.
toCellArray() - Method in class com.jscape.inet.terminal.Screen
Represents screen as two dimensional array of Cell objects.
toString() - Method in class com.jscape.filetransfer.FileTransferChangeDirEvent
 
toString() - Method in class com.jscape.filetransfer.FileTransferCommandEvent
 
toString() - Method in class com.jscape.filetransfer.FileTransferConnectedEvent
 
toString() - Method in class com.jscape.filetransfer.FileTransferCreateDirEvent
 
toString() - Method in class com.jscape.filetransfer.FileTransferDeleteDirEvent
 
toString() - Method in class com.jscape.filetransfer.FileTransferDeleteFileEvent
 
toString() - Method in class com.jscape.filetransfer.FileTransferDisconnectedEvent
 
toString() - Method in class com.jscape.filetransfer.FileTransferDownloadEvent
 
toString() - Method in class com.jscape.filetransfer.FileTransferErrorEvent
 
toString() - Method in class com.jscape.filetransfer.FileTransferProgressEvent
 
toString() - Method in class com.jscape.filetransfer.FileTransferRemoteFile
 
toString() - Method in class com.jscape.filetransfer.FileTransferRenameFileEvent
 
toString() - Method in class com.jscape.filetransfer.FileTransferResponseEvent
 
toString() - Method in class com.jscape.filetransfer.FileTransferSslHandshakeEvent
 
toString() - Method in class com.jscape.filetransfer.FileTransferUploadEvent
 
toString() - Method in class com.jscape.inet.dns.record.Address
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.CanonicalName
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.HostInfo
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.MailBox
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.MailDomain
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.MailExchanger
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.MailForwarder
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.MailGroup
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.MailInfo
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.MailRename
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.NameServer
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.Null
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.Pointer
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.StartOfAuthority
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.Text
Gets String representation of this record.
toString() - Method in class com.jscape.inet.dns.record.WellKnownServices
Gets String representation of this record.
toString() - Method in class com.jscape.inet.email.EmailAddress
Get full email address.
toString() - Method in class com.jscape.inet.ftp.FtpChangeDirEvent
Gets String representation of this event.
toString() - Method in class com.jscape.inet.ftp.FtpConnectedEvent
Gets String equivalent of this event.
toString() - Method in class com.jscape.inet.ftp.FtpCreateDirEvent
Gets String representation of this event
toString() - Method in class com.jscape.inet.ftp.FtpDeleteDirEvent
Gets String representation of event.
toString() - Method in class com.jscape.inet.ftp.FtpDeleteFileEvent
Gets String representation of this event.
toString() - Method in class com.jscape.inet.ftp.FtpDisconnectedEvent
Gets String equivalent of this event.
toString() - Method in class com.jscape.inet.ftp.FtpDownloadEvent
Gets String equivalent of this event.
toString() - Method in class com.jscape.inet.ftp.FtpErrorEvent
Gets String equivalent of this event.
toString() - Method in class com.jscape.inet.ftp.FtpFile
Gets string representation of this FtpFile.
toString() - Method in class com.jscape.inet.ftp.FtpRenameFileEvent
Gets String representation of this event
toString() - Method in class com.jscape.inet.ftp.FtpUploadEvent
Gets String equivalent of this event.
toString() - Method in class com.jscape.inet.ftp.MvsParser.MvsFileRecord
 
toString() - Method in class com.jscape.inet.mime.MimeHeader
Gets String representation of this MimeHeader.
toString() - Method in class com.jscape.inet.mime.MimeHeaderAttr
Gets String representation of this MimeHeaderAttr.
toString() - Method in class com.jscape.inet.nntp.NntpNewsgroup
Gets string representation of newsgroup in format as expected by server when posting article.
toString() - Method in class com.jscape.inet.scp.events.ScpConnectedEvent
 
toString() - Method in class com.jscape.inet.scp.events.ScpDisconnectedEvent
 
toString() - Method in class com.jscape.inet.scp.events.ScpEvent
 
toString() - Method in class com.jscape.inet.scp.events.ScpFileDownloadedEvent
 
toString() - Method in class com.jscape.inet.scp.events.ScpFileUploadedEvent
 
toString() - Method in class com.jscape.inet.scp.events.ScpTransferProgressEvent
 
toString() - Method in class com.jscape.inet.scp.Scp
 
toString() - Method in class com.jscape.inet.sftp.Sftp.DirectoryService.Directory
 
toString() - Method in class com.jscape.inet.sftp.Sftp.DownloadDirectoryOperation
 
toString() - Method in class com.jscape.inet.sftp.Sftp.DownloadFileOperation
 
toString() - Method in class com.jscape.inet.sftp.Sftp.RemoteDirectory.PathDirectory
 
toString() - Method in class com.jscape.inet.sftp.Sftp.RemoteDirectory.PathElementsDirectory
 
toString() - Method in class com.jscape.inet.sftp.Sftp.UploadDirectoryOperation
 
toString() - Method in class com.jscape.inet.sftp.Sftp.UploadFileOperation
 
toString() - Method in class com.jscape.inet.sftp.SftpConfiguration
 
toString() - Method in class com.jscape.inet.ssh.protocol.v2.authentication.ComponentClientAuthentication
 
toString() - Method in class com.jscape.inet.ssh.protocol.v2.authentication.KeyboardInteractiveRegexClientAuthentication.Entry
 
toString() - Method in class com.jscape.inet.ssh.protocol.v2.authentication.NoneClientAuthentication
 
toString() - Method in class com.jscape.inet.ssh.protocol.v2.authentication.PasswordClientAuthentication
 
toString() - Method in class com.jscape.inet.ssh.protocol.v2.authentication.PublicKeyClientAuthentication
 
toString() - Method in class com.jscape.inet.ssh.protocol.v2.marshaling.algorithms.ComponentCompressionFactory
 
toString() - Method in class com.jscape.inet.ssh.protocol.v2.marshaling.algorithms.JceEncryptionFactory.Entry
 
toString() - Method in class com.jscape.inet.ssh.protocol.v2.marshaling.algorithms.JceEncryptionFactory
 
toString() - Method in class com.jscape.inet.ssh.protocol.v2.marshaling.algorithms.JceMacFactory.Entry
 
toString() - Method in class com.jscape.inet.ssh.protocol.v2.marshaling.algorithms.JceMacFactory
 
toString() - Method in class com.jscape.inet.ssh.protocol.v2.transport.keyexchange.ComponentClientKeyExchangeFactory.Entry
 
toString() - Method in class com.jscape.inet.ssh.protocol.v2.transport.keyexchange.ComponentClientKeyExchangeFactory
 
toString() - Method in class com.jscape.inet.ssh.SshConfiguration
 
toString() - Method in class com.jscape.inet.ssh.util.HostKeyFingerprintVerifier
 
toString() - Method in class com.jscape.inet.ssh.util.SshHostKeys.Entry
 
toString() - Method in class com.jscape.inet.ssh.util.SshHostKeys
 
toString() - Method in class com.jscape.inet.ssh.util.SshParameters
 
toString() - Method in class com.jscape.inet.terminal.ControlSequence
 
toString() - Method in class com.jscape.inet.terminal.Row
 
toString() - Method in class com.jscape.inet.terminal.Screen
Gets String representation of this Screen with each Row in Screen terminated by a \r\n.
transfer(Ftp, Ftp, String) - Method in class com.jscape.inet.ftp.Fxp
Transfer file from source FTP server to destination FTP server
transfer(Ftps, Ftps, String) - Method in class com.jscape.inet.ftps.Fxps
Transfer file from source FTP server to destination FTP server
transferDir(Ftp, Ftp, String) - Method in class com.jscape.inet.ftp.Fxp
Transfer directory from source FTP server to destination FTP server
transferDir(Ftps, Ftps, String) - Method in class com.jscape.inet.ftps.Fxps
Transfer directory from source FTP server to destination FTP server
tread() - Method in class com.jscape.inet.telnet.TelnetInputStream
Read data from telnet stream without escaping control characters.
TSC_BEL - Static variable in class com.jscape.inet.telnet.Telnet
Telnet special character : BELL.
Produces an audible or visible signal (which does NOT move the print head).
TSC_BS - Static variable in class com.jscape.inet.telnet.Telnet
Telnet special character : Back Space.
Moves the print head one character position towards the left margin.
TSC_CR - Static variable in class com.jscape.inet.telnet.Telnet
Telnet special character : Carriage Return.
Moves the printer to the left margin of the current line.
TSC_EC - Static variable in class com.jscape.inet.telnet.Telnet
Telnet special character : Erase character
TSC_EL - Static variable in class com.jscape.inet.telnet.Telnet
Telnet special character : Erase line
TSC_FF - Static variable in class com.jscape.inet.telnet.Telnet
Telnet special character : Form Feed.
Moves the printer to the top of the next page, keeping the same horizontal position.
TSC_HT - Static variable in class com.jscape.inet.telnet.Telnet
Telnet special character : Horizontal Tab.
Moves the printer to the next horizontal tab stop.
TSC_IAC - Static variable in class com.jscape.inet.telnet.Telnet
Telnet escape charater : Interpret as Command
TSC_LF - Static variable in class com.jscape.inet.telnet.Telnet
Telnet special character : Line Feed.
Moves the printer to the next print line, keeping the same horizontal position.
TSC_NULL - Static variable in class com.jscape.inet.telnet.Telnet
Telnet special character : No operation
TSC_VT - Static variable in class com.jscape.inet.telnet.Telnet
Telnet special character : Vertical Tab.
Moves the printer to the next vertical tab stop.
TWOFISH128_CBC - Static variable in class com.jscape.inet.ssh.protocol.v2.marshaling.algorithms.JceEncryptions
 
TWOFISH128_CTR - Static variable in class com.jscape.inet.ssh.protocol.v2.marshaling.algorithms.JceEncryptions
 
TWOFISH192_CBC - Static variable in class com.jscape.inet.ssh.protocol.v2.marshaling.algorithms.JceEncryptions
 
TWOFISH192_CTR - Static variable in class com.jscape.inet.ssh.protocol.v2.marshaling.algorithms.JceEncryptions
 
TWOFISH256_CBC - Static variable in class com.jscape.inet.ssh.protocol.v2.marshaling.algorithms.JceEncryptions
 
TWOFISH256_CTR - Static variable in class com.jscape.inet.ssh.protocol.v2.marshaling.algorithms.JceEncryptions
 
TWOFISH_CBC - Static variable in class com.jscape.inet.ssh.protocol.v2.marshaling.algorithms.JceEncryptions
 
twrite(int) - Method in class com.jscape.inet.telnet.TelnetOutputStream
Write data to telnet stream without escaping IAC.
twrite(byte[]) - Method in class com.jscape.inet.telnet.TelnetOutputStream
Write data to telnet stream without escaping IAC.
TYPE_A - Static variable in class com.jscape.inet.dns.Dns
Indicates a host address record.
TYPE_ANY - Static variable in class com.jscape.inet.dns.Dns
Indicates Any record.
TYPE_AXFR - Static variable in class com.jscape.inet.dns.Dns
Indicates a request for zone transfer record.
TYPE_CNAME - Static variable in class com.jscape.inet.dns.Dns
Indicates a canonical name for an alias record.
TYPE_HINFO - Static variable in class com.jscape.inet.dns.Dns
Indicates a host information record.
TYPE_IXFR - Static variable in class com.jscape.inet.dns.Dns
Indicates a request for incremental zone transfer record.
TYPE_MAILA - Static variable in class com.jscape.inet.dns.Dns
Indicates a request for mail agent record.
TYPE_MAILB - Static variable in class com.jscape.inet.dns.Dns
Indicates a request for mailbox-related records record.
TYPE_MB - Static variable in class com.jscape.inet.dns.Dns
Indicates a mailbox domain record.
TYPE_MD - Static variable in class com.jscape.inet.dns.Dns
Indicates a mail destination record.
TYPE_MF - Static variable in class com.jscape.inet.dns.Dns
Indicates a mail forwarder record.
TYPE_MG - Static variable in class com.jscape.inet.dns.Dns
Indicates a mail group member record.
TYPE_MINFO - Static variable in class com.jscape.inet.dns.Dns
Indicates a mailbox or list information record.
TYPE_MR - Static variable in class com.jscape.inet.dns.Dns
Indicates a mail rename domain name record.
TYPE_MX - Static variable in class com.jscape.inet.dns.Dns
Indicates a mail exchange record.
TYPE_NS - Static variable in class com.jscape.inet.dns.Dns
Indicates an authoritative name server record.
TYPE_NULL - Static variable in class com.jscape.inet.dns.Dns
Indicates a null record.
TYPE_PTR - Static variable in class com.jscape.inet.dns.Dns
Indicates a domain name pointer record.
TYPE_SOA - Static variable in class com.jscape.inet.dns.Dns
Indicates a start of authority record.
TYPE_TXT - Static variable in class com.jscape.inet.dns.Dns
Indicates a text record.
TYPE_WKS - Static variable in class com.jscape.inet.dns.Dns
Indicates a well known service description record.
typeName(int) - Static method in class com.jscape.inet.dns.Dns
Gets descriptive name for a given Dns record type.
A B C D E F G H I J K L M N O P Q R S T U V W X Z 
Skip navigation links
Secure iNet Factory

Copyright © JSCAPE LLC. 1999-2021. All Rights Reserved