Package com.vividsolutions.jump.qa
Class ValidationErrorType
- java.lang.Object
-
- com.vividsolutions.jump.qa.ValidationErrorType
-
-
Field Summary
Fields Modifier and Type Field Description static ValidationErrorType
BASIC_TOPOLOGY_INVALID
Basic topology is invalidstatic ValidationErrorType
EXTERIOR_RING_CCW
Polygon shell is oriented counter-clockwisestatic ValidationErrorType
GEOMETRY_CLASS_DISALLOWED
Geometry class not allowedstatic ValidationErrorType
INTERIOR_RING_CW
Polygon hole is oriented clockwisestatic ValidationErrorType
NONSIMPLE
Linestring not simplestatic ValidationErrorType
POLYGON_HAS_HOLES
Polygon has holesstatic ValidationErrorType
REPEATED_CONSECUTIVE_POINTS
Consecutive points are the samestatic ValidationErrorType
SMALL_ANGLE
Contains segments with angle below minimumstatic ValidationErrorType
SMALL_AREA
Is/contains polygon with area below minimumstatic ValidationErrorType
SMALL_SEGMENT
Contains segment with length below minimum
-
-
-
Field Detail
-
GEOMETRY_CLASS_DISALLOWED
public static final ValidationErrorType GEOMETRY_CLASS_DISALLOWED
Geometry class not allowed
-
BASIC_TOPOLOGY_INVALID
public static final ValidationErrorType BASIC_TOPOLOGY_INVALID
Basic topology is invalid
-
EXTERIOR_RING_CCW
public static final ValidationErrorType EXTERIOR_RING_CCW
Polygon shell is oriented counter-clockwise
-
INTERIOR_RING_CW
public static final ValidationErrorType INTERIOR_RING_CW
Polygon hole is oriented clockwise
-
NONSIMPLE
public static final ValidationErrorType NONSIMPLE
Linestring not simple- Since:
- OpenJUMP 1.6
-
SMALL_SEGMENT
public static final ValidationErrorType SMALL_SEGMENT
Contains segment with length below minimum
-
SMALL_AREA
public static final ValidationErrorType SMALL_AREA
Is/contains polygon with area below minimum
-
SMALL_ANGLE
public static final ValidationErrorType SMALL_ANGLE
Contains segments with angle below minimum
-
POLYGON_HAS_HOLES
public static final ValidationErrorType POLYGON_HAS_HOLES
Polygon has holes
-
REPEATED_CONSECUTIVE_POINTS
public static final ValidationErrorType REPEATED_CONSECUTIVE_POINTS
Consecutive points are the same
-
-