Java javax.net SocketFactory fields, constructors, methods, implement or subclass

Example usage for Java javax.net SocketFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.net SocketFactory.

The text is from its open source code.

Subclass

javax.net.SocketFactory has subclasses.
Click this link to see all its subclasses.

Method

SocketcreateSocket(String host, int port)
Creates a socket and connects it to the specified remote host at the specified remote port.
SocketcreateSocket(InetAddress host, int port)
Creates a socket and connects it to the specified port number at the specified address.
SocketcreateSocket(String host, int port, InetAddress localHost, int localPort)
Creates a socket and connects it to the specified remote host on the specified remote port.
SocketcreateSocket(InetAddress address, int port, InetAddress localAddress, int localPort)
Creates a socket and connect it to the specified remote address on the specified remote port.
SocketcreateSocket()
Creates an unconnected socket.
ClassgetClass()
Returns the runtime class of this Object .
SocketFactorygetDefault()
Returns a copy of the environment's default socket factory.