- createSocket() - Method in class javax.net.SocketFactory
-
Creates an unconnected socket.
- createSocket(String, int) - Method in class javax.net.SocketFactory
-
Creates a socket and connects it to the specified remote host
at the specified remote port.
- createSocket(String, int, InetAddress, int) - Method in class javax.net.SocketFactory
-
Creates a socket and connects it to the specified remote host
on the specified remote port.
- createSocket(InetAddress, int) - Method in class javax.net.SocketFactory
-
Creates a socket and connects it to the specified port number
at the specified address.
- createSocket(InetAddress, int, InetAddress, int) - Method in class javax.net.SocketFactory
-
Creates a socket and connect it to the specified remote address
on the specified remote port.
- createSocket(Socket, String, int, boolean) - Method in class javax.net.ssl.SSLSocketFactory
-
Returns a socket layered over an existing socket connected to the named
host, at the given port.
- createSocket(Socket, InputStream, boolean) - Method in class javax.net.ssl.SSLSocketFactory
-
Creates a server mode Socket
layered over an existing connected
socket, and is able to read data which has already been consumed/removed
from the Socket
's underlying InputStream
.