URLStreamHandlerFactory (Java SE 10 & JDK 10 )
-
- All Known Implementing Classes:
URLStreamHandlerProvider
public interface URLStreamHandlerFactoryThis interface defines a factory for
URLstream protocol handlers.A URL stream handler factory is used as specified in the URL constructor.
- Since:
- 1.0
- See Also:
URL,URLStreamHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description URLStreamHandlercreateURLStreamHandler​(String protocol)Creates a new
URLStreamHandlerinstance with the specified protocol.
-
-
-
Method Detail
-
createURLStreamHandler
URLStreamHandler createURLStreamHandler​(String protocol)
Creates a new
URLStreamHandlerinstance with the specified protocol.- Parameters:
protocol- the protocol ("ftp", "http", "nntp", etc.).- Returns:
- a
URLStreamHandlerfor the specific protocol, ornullif this factory cannot create a handler for the specific protocol - See Also:
URLStreamHandler
-
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2018, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.