Field Summary |
|
final public static String | FILTER_COMPLIANCE_STRICTNESS |
final public static String | FLOW_HANDLER_HINT |
final public static String | NAMESPACE_MAPPING Declares the schemas to use for parsing. |
final public static String | STREAM_HINT |
final public static Integer | VALUE_FILTER_COMPLIANCE_HIGH The value so the parser will be compliant with the Filter 1.0.0 spec.
It will throw an exception with filters like:
BBoxFilter
or
FidFilter
It will encode:
BBoxFilter
and
FidFilter
as
<Filter><FidFilter fid="fid"/></Filter>
IMPORTANT: If this compliance level is used and a non-strict FilterFactory is used to create
the filter then the original filter must be ran on the retrieved feature because this hint will sometimes
cause more features to be returned than is requested. |
final public static Integer | VALUE_FILTER_COMPLIANCE_LOW The value so that the parser will encode all Geotools filters with no modifications. |
final public static Integer | VALUE_FILTER_COMPLIANCE_MEDIUM The value so the parser will be slightly more compliant to the Filter 1.0.0 spec.
It will encode:
BBoxFilter
or
FidFilter
as
<Filter><BBo>...</BBox><FidFilter fid="fid"/></Filter>
It will encode:
BBoxFilter
and
FidFilter
as
<Filter><FidFilter fid="fid"/></Filter>
IMPORTANT: If this compliance level is used and a non-strict FilterFactory is used to create
the filter then the original filter must be ran on the retrieved feature because this hint will sometimes
cause more features to be returned than is requested. |