|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
ObjectDefaultFeatureValidation
LineNoSelfIntersectValidation
public class LineNoSelfIntersectValidation
LineNoSelfIntersectFeatureValidation purpose.
Tests to see if a geometry crosses itself. It does not detect if a segment of a LineString doubles back on itself for one segment, then terminates. A different validation is needed to test overlapping. Uses JTS' crosses routine.
Example Use:
LineNoSelfIntersectFeatureValidation x = new LineNoSelfIntersectFeatureValidation("noSelfIntersectRoads", "Tests to see if a
geometry intersects itself", new String[] {"road"});
Field Summary |
---|
Fields inherited from interface Validation |
---|
ALL, PRIORITY_COMPLEX, PRIORITY_INVOLVED, PRIORITY_SIMPLE, PRIORITY_TRIVIAL |
Constructor Summary | |
---|---|
LineNoSelfIntersectValidation()
LineNoSelfIntersectFeatureValidation constructor. |
Method Summary | |
---|---|
int |
getPriority()
Override getPriority. |
boolean |
validate(SimpleFeature feature,
SimpleFeatureType type,
ValidationResults results)
Override validate. |
Methods inherited from class DefaultFeatureValidation |
---|
getDefaultLineString, getDescription, getName, getTypeRef, getTypeRefs, setDescription, setName, setTypeRef |
Methods inherited from class Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public LineNoSelfIntersectValidation()
Description
Method Detail |
---|
public int getPriority()
Sets the priority level of this validation. This is set by the programmer and is a measure of the expense of this plugin
getPriority
in interface Validation
getPriority
in class DefaultFeatureValidation
Validation.getPriority()
public boolean validate(SimpleFeature feature, SimpleFeatureType type, ValidationResults results)
Tests to see if a geometry intersects itself. It does not detect if a segment of a LineString doubles back on itself for one segment, then terminates. A different validation is needed to test overlapping. Uses JTS' intersect routine.
validate
in interface FeatureValidation
validate
in class DefaultFeatureValidation
feature
- The Feature to be validated.type
- The FeatureTypeInfo of the feature.results
- The storage for error messages.
org.geotools.validation.FeatureValidation#validate(org.geotools.feature.Feature,
org.geotools.feature.FeatureTypeInfo,
org.geotools.validation.ValidationResults)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |