Package no.hasmac.jsonld.loader
Class DocumentLoaderOptions
- java.lang.Object
-
- no.hasmac.jsonld.loader.DocumentLoaderOptions
-
public class DocumentLoaderOptions extends java.lang.Object
TheDocumentLoaderOptions
is used to pass various options to theDocumentLoader
.- See Also:
- LoadDocumentOptions Specification
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
extractAllScripts
private java.lang.String
profile
private java.util.Collection<java.lang.String>
requestProfile
-
Constructor Summary
Constructors Constructor Description DocumentLoaderOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getProfile()
java.util.Collection<java.lang.String>
getRequestProfile()
boolean
isExtractAllScripts()
void
setExtractAllScripts(boolean extractAllScripts)
void
setProfile(java.lang.String profile)
void
setRequestProfile(java.util.Collection<java.lang.String> requestProfile)
-
-
-
Method Detail
-
isExtractAllScripts
public boolean isExtractAllScripts()
-
setExtractAllScripts
public void setExtractAllScripts(boolean extractAllScripts)
-
getProfile
public java.lang.String getProfile()
-
setProfile
public void setProfile(java.lang.String profile)
-
getRequestProfile
public java.util.Collection<java.lang.String> getRequestProfile()
-
setRequestProfile
public void setRequestProfile(java.util.Collection<java.lang.String> requestProfile)
-
-