org.geotools.validation
Class DefaultFeatureValidation

java.lang.Object
  extended byorg.geotools.validation.DefaultFeatureValidation
All Implemented Interfaces:
FeatureValidation, Validation
Direct Known Subclasses:
AttributeValidation, DomainValidation, GazetteerNameValidation, IsValidGeometryValidation, LineMustBeASinglePartValidation, LineNoSelfIntersectValidation, LineNoSelfOverlappingValidation, PolygonNoGapsValidation, SingleValueValidation, SQLValidation

public class DefaultFeatureValidation
extends java.lang.Object
implements FeatureValidation

Tests to see if a Feature ...

The geometry is first tested to see if it is null, and if it is null, then it is tested to see if it is allowed to be null by calling isNillable().


Field Summary
 
Fields inherited from interface org.geotools.validation.Validation
ALL, PRIORITY_COMPLEX, PRIORITY_INVOLVED, PRIORITY_SIMPLE, PRIORITY_TRIVIAL
 
Constructor Summary
DefaultFeatureValidation()
          No argument constructor, required by the Java Bean Specification.
 
Method Summary
 java.lang.String getDescription()
          Override getDescription.
 java.lang.String getName()
          Access the user's name for this test.
 int getPriority()
          The priority level used to schedule this Validation.
 java.lang.String getTypeRef()
          Access typeRef property.
 java.lang.String[] getTypeRefs()
          Implementation of getTypeNames.
 void setDescription(java.lang.String description)
          Sets the description of this validation.
 void setName(java.lang.String name)
          Sets the name of this validation.
 void setTypeRef(java.lang.String typeRef)
          Set typeRef to typeRef.
 boolean validate(org.geotools.feature.Feature feature, org.geotools.feature.FeatureType type, ValidationResults results)
          Validation test for feature.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DefaultFeatureValidation

public DefaultFeatureValidation()
No argument constructor, required by the Java Bean Specification.

Method Detail

setName

public final void setName(java.lang.String name)
Sets the name of this validation.

Specified by:
setName in interface Validation
Parameters:
name - The name of this validation.
See Also:
Validation.setName(java.lang.String)

getName

public final java.lang.String getName()
Access the user's name for this test.

Specified by:
getName in interface Validation
Returns:
The name of this validation.
See Also:
Validation.getName()

setDescription

public final void setDescription(java.lang.String description)
Sets the description of this validation.

Specified by:
setDescription in interface Validation
Parameters:
description - The description of the validation.
See Also:
Validation.setDescription(java.lang.String)

getDescription

public final java.lang.String getDescription()
Override getDescription.

Returns the description of this validation as a string.

Specified by:
getDescription in interface Validation
Returns:
The description of this validation.
See Also:
Validation.getDescription()

getPriority

public int getPriority()
The priority level used to schedule this Validation.

Specified by:
getPriority in interface Validation
Returns:
PRORITY_SIMPLE
See Also:
Validation.getPriority()

getTypeRefs

public java.lang.String[] getTypeRefs()
Implementation of getTypeNames.

Specified by:
getTypeRefs in interface Validation
Returns:
Array of typeNames, or empty array for all, null for disabled
See Also:
org.geotools.validation.Validation#getTypeNames()

getTypeRef

public java.lang.String getTypeRef()
Access typeRef property.

Returns:
Returns the typeRef in the format dataStoreId:typeName.

setTypeRef

public void setTypeRef(java.lang.String typeRef)
Set typeRef to typeRef.

Parameters:
typeRef - The typeRef in the format dataStoreId:typeName

validate

public boolean validate(org.geotools.feature.Feature feature,
                        org.geotools.feature.FeatureType type,
                        ValidationResults results)
Validation test for feature.

Description of test ...

Specified by:
validate in interface FeatureValidation
Parameters:
feature - The Feature to be validated
type - The FeatureType of the feature
results - The storage for error messages.
Returns:
true if the feature is a valid geometry.
See Also:
FeatureValidation.validate(org.geotools.feature.Feature, org.geotools.feature.FeatureType, org.geotools.validation.ValidationResults)