Instances of this abstract class are
opaque representations of network socket addresses. The only concrete
subclass in the core Java platform is
InetSocketAddress which represents an internet
address and port number. See InetSocketAddress.

public abstract class SocketAddress implements Serializable {
// Public Constructors
public SocketAddress( );
}
Subclasses
InetSocketAddress
Passed To
Too many methods to list.
Returned By
DatagramPacket.getSocketAddress( ),
DatagramSocket.{getLocalSocketAddress( ),
getremoteSocketAddress( )},
java.net.Proxy.address( ),
ServerSocket.getLocalSocketAddress( ),
Socket.{getLocalSocketAddress( ),
getremoteSocketAddress( )},
java.nio.channels.DatagramChannel.receive( )
 |