org.geotools.feature.type |
|
Java Source File Name | Type | Comment |
AnnotationFeatureType.java | Class | Defines required attributes for Annotations.
Annotations represent a text based geographic feature.
The geometry stored in the feature indicates where the
text should be drawn and the attribute indicated by
the
AnnotationFeatureType.ANNOTATION_ATTRIBUTE_NAME attribute holds
the text to be displayed for the feature.
Example:
if ( feature.getFeatureType().isDescendedFrom( AnnotationFeatureType.ANNOTATION ) )
{
String attributeName = (String)feature.getAttribute( AnnotationFeatureType.ANNOTATION_ATTRIBUTE_NAME );
String annotationText = (String)feature.getAttribute( attributeName );
... |
BasicFeatureTypes.java | Class | Defines required attributes for Annotations.
Annotations represent a text based geographic feature.
The geometry stored in the feature indicates where the
text should be drawn and the attribute indicated by
the
BasicFeatureTypes.ANNOTATION_ATTRIBUTE_NAME attribute holds
the text to be displayed for the feature.
Example:
if ( feature.getFeatureType().isDescendedFrom( AnnotationFeatureType.ANNOTATION ) )
{
String attributeName = (String)feature.getAttribute( AnnotationFeatureType.ANNOTATION_ATTRIBUTE_NAME );
String annotationText = (String)feature.getAttribute( attributeName );
... |
ChoiceAttributeType.java | Class | This represents a Choice of AttributeTypes. |
DateUtil.java | Class | Utility class supplying static methods. |
FeatureAttributeType.java | Class | Represents an ordered list of AttributeTypes. |
GeometricAttributeType.java | Class | Provides ...TODO summary sentence
TODO Description
Example Use:
GeometryAttributeType x = new GeometryAttributeType( ...
|
ListAttributeType.java | Class | Represents an ordered list of AttributeTypes. |
NestedAttributeType.java | Class | This level of inheritance is intended for documentation purposes ... |
NumericAttributeType.java | Class | Class that represents a Numeric. |
ProfileImpl.java | Class | A "sub" Schema used to select types for a specific use. |
SchemaImpl.java | Class | Implementation of Schema. |
SetAttributeType.java | Class | Represents an un-ordered Set of AttributeTypes. |
TemporalAttributeType.java | Class | A Default class that represents a Temporal attribute. |
TextualAttributeType.java | Class | |
TypeName.java | Class | Simple implementation of TypeName. |