Package net.sf.saxon.functions
Class URIQueryParameters
java.lang.Object
net.sf.saxon.functions.URIQueryParameters
A set of query parameters on a URI passed to the collection() or document() function
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionURIQueryParameters
(String query, Configuration config) Create an object representing the query part of a URI -
Method Summary
Modifier and TypeMethodDescriptionGet the file name filter (select=pattern), or null if unspecifiedGet the value of the on-error=fail|warning|ignore parameter, or null if unspecifiedGet the value of the recurse=yes|no parameter, or null if unspecifiedint
Get the value of the strip-space=yes|no parameter.Get the value of the validation=strict|lax|preserve|strip parameter, or null if unspecifiedGet the value of xinclude=yes|no, or null if unspecifiedGet the selected XML parser, or null if unspecifiedboolean
Get the value of unparsed=yes|no, or false if unspecified
-
Field Details
-
filter
FilenameFilter filter -
recurse
Boolean recurse -
validation
Integer validation -
strip
int strip -
onError
Integer onError -
parser
XMLReader parser -
xinclude
Boolean xinclude -
unparsed
boolean unparsed -
ON_ERROR_FAIL
public static final int ON_ERROR_FAIL- See Also:
-
ON_ERROR_WARNING
public static final int ON_ERROR_WARNING- See Also:
-
ON_ERROR_IGNORE
public static final int ON_ERROR_IGNORE- See Also:
-
-
Constructor Details
-
URIQueryParameters
Create an object representing the query part of a URI- Parameters:
query
- the part of the URI after the "?" symbolconfig
- the Saxon configuration
-
-
Method Details
-
getStripSpace
public int getStripSpace()Get the value of the strip-space=yes|no parameter. Returns one of the valuesWhitespace.ALL
,Whitespace.IGNORABLE
,Whitespace.NONE
,Whitespace.UNSPECIFIED
-
getValidationMode
Get the value of the validation=strict|lax|preserve|strip parameter, or null if unspecified -
getFilenameFilter
Get the file name filter (select=pattern), or null if unspecified -
getRecurse
Get the value of the recurse=yes|no parameter, or null if unspecified -
getOnError
Get the value of the on-error=fail|warning|ignore parameter, or null if unspecified -
getXInclude
Get the value of xinclude=yes|no, or null if unspecified -
isUnparsed
public boolean isUnparsed()Get the value of unparsed=yes|no, or false if unspecified -
getXMLReader
Get the selected XML parser, or null if unspecified
-