Package com.networknt.schema.uri
Interface URIFactory
-
- All Known Implementing Classes:
ClasspathURLFactory
,URISchemeFactory
,URLFactory
public interface URIFactory
The URIFactory interface defines howURI
s are able to be combined and created.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description URI
create(String uri)
URI
create(URI baseURI, String segment)
-
-
-
Method Detail
-
create
URI create(String uri)
- Parameters:
uri
- Some uri string.- Returns:
- The converted
URI
. - Throws:
IllegalArgumentException
- if there was a problem creating theURI
with the given data.
-
-