Searched defs:InetSocketAddress (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/net/
H A DInetSocketAddress.java52 public class InetSocketAddress class in inherits:SocketAddress
165 public InetSocketAddress(int port) { method in class:InetSocketAddress
184 public InetSocketAddress(InetAddress addr, int port) { method in class:InetSocketAddress
215 public InetSocketAddress(String hostname, int port) { method in class:InetSocketAddress
228 private InetSocketAddress(int port, String hostname) { method in class:InetSocketAddress
249 * @return a <code>InetSocketAddress</code> representing the unresolved
253 public static InetSocketAddress createUnresolved(String host, int port) {
254 return new InetSocketAddress(checkPort(port), checkHost(host));
311 InetSocketAddress.class.getDeclaredField("holder"));
371 * Constructs a string representation of this InetSocketAddress
[all...]

Completed in 30 milliseconds