Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.net.URLStreamHandler

Uses of URLStreamHandler in java.net
 

Fields in java.net declared as URLStreamHandler
(package private)  URLStreamHandler URL.ph
          The protocol handler in use for this URL
 

Methods in java.net that return URLStreamHandler
private static URLStreamHandler URL.getURLStreamHandler(java.lang.String protocol)
          This internal method is used in two different constructors to load a protocol handler for this URL.
(package private)  URLStreamHandler URLClassLoader.getURLStreamHandler(java.lang.String protocol)
          If the URLStreamHandlerFactory has been set this return the appropriate URLStreamHandler for the given protocol, if not set returns null.
 URLStreamHandler URLStreamHandlerFactory.createURLStreamHandler(java.lang.String protocol)
          This method maps the protocol portion of a URL to a URLStreamHandler object.
 

Constructors in java.net with parameters of type URLStreamHandler
URL(java.lang.String protocol, java.lang.String host, int port, java.lang.String file, URLStreamHandler ph)
          This method initializes a new instance of URL with the specified protocol, host, port, and file.
URL(URL context, java.lang.String spec, URLStreamHandler ph)
          Creates an URL from given arguments This method parses a String representation of a URL within the context of an existing URL.