URLStreamHandlerFactory (Java SE 13 & JDK 13 )
- All Known Implementing Classes:
URLStreamHandlerProvider
public interface URLStreamHandlerFactory
This interface defines a factory for URL stream
protocol handlers.
A URL stream handler factory is used as specified in the URL constructor.
- Since:
- 1.0
- See Also:
URL,URLStreamHandler
-
Method Summary
Modifier and Type Method Description URLStreamHandlercreateURLStreamHandler(String protocol)Creates a new
URLStreamHandlerinstance with the specified protocol.
-
Method Details
-
createURLStreamHandler
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, 2019, 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.