Package com.github.weisj.jsvg.parser
Interface ElementLoader.ExternalDocumentPolicy
-
- Enclosing interface:
- ElementLoader
@Experimental public static interface ElementLoader.ExternalDocumentPolicy
-
-
Field Summary
Fields Modifier and Type Field Description static ElementLoader.ExternalDocumentPolicy
ALLOW_RELATIVE
Allow external documents to be loaded relative to the base document.static ElementLoader.ExternalDocumentPolicy
DENY
Deny loading of external documents.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable java.net.URI
resolveDocumentURI(@NotNull java.net.URI baseDocumentUri, @NotNull java.lang.String documentPath)
-
-
-
Field Detail
-
DENY
static final ElementLoader.ExternalDocumentPolicy DENY
Deny loading of external documents.
-
ALLOW_RELATIVE
static final ElementLoader.ExternalDocumentPolicy ALLOW_RELATIVE
Allow external documents to be loaded relative to the base document.
-
-