org.geotools.feature

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » GeoTools 2.4.1 » org.geotools.feature 
org.geotools.feature
Java Source File NameTypeComment
AttributeType.javaInterface

Stores metadata about a single attribute object.

  1. Name: A string that is used to reference the attribute.
  2. Nillable: if nulls are allowed as this attribute.
  3. Type: The expected Java class of this attribute.

AttributeTypes must also provide the validate(Object obj) method, which determines whether a given object matches the constraints imposed by the AttributeType.

AttributeTypeFactory.javaClass Abstract class for AttributeType factories.
AttributeTypes.javaClass

Proposal: AttributeType utilities class.


author:
   Luca S.
AttributeTypeTest.javaClass
ChoiceAttrTypeTest.javaClass Tests for the Choice attribute.
CollectionEvent.javaClass A simple event object to represent all events triggered by FeatureCollection instances (typically change events).
CollectionListener.javaInterface Interface to be implemented by all listeners of CollectionEvents.
DateUtilTest.javaClass
DefaultAttributeType.javaClass Simple, immutable class to store attributes.
DefaultAttributeTypeFactory.javaClass Factory for creating DefaultAttributeTypes.
DefaultFeature.javaClass Provides a more efficient feature representation for the flat and complex features.
DefaultFeatureCollection.javaClass A basic implementation of FeatureCollection which use a TreeMap for its internal storage.
DefaultFeatureCollections.javaClass Concrete extension to FeatureCollections to create DefaultFeatureCollections.
DefaultFeatureType.javaClass A basic implementation of FeatureType.
DefaultFeatureTypeFactory.javaClass A simple DefaultFeatureTypeFactory which stores its Attributes in a list.
Feature.javaInterface

Represents a feature of arbitrary complexity.

This interface answers the question: How do we store feature attributes? (The answer to the more useful question, How do we access feature attribute, is contained in the Expression class.

Warning: We are revising the Feature Model to be more complete in the next round of GeoTools.

FeatureAttributeType.javaInterface A FeatureType aware Feature AttributeType.

While we could use a plain AttributeType to capture a Feature instance we would miss out one one important aspect: the schema.

By definition the schema of a Feature is not defined by java interface alone, this interface allows access the the assocaited FeatureType.

Suggestion: we can look at having this class extend ListFeatureType and exactly specifying how delegation to the getSchema() should occur.

FeatureCollection.javaInterface Represents a collection of features.

Implementations (and client code) should adhere to the rules set forth by java.util.Collection.

FeatureCollectionIteration.javaClass The FeatureCollectionIteration provides a depth first traversal of a FeatureCollection which will call the provided call-back Handler.
FeatureCollections.javaClass A utility class for working with FeatureCollections.
FeatureCollectionTest.javaClass
FeatureComparators.javaClass A utility class for creating simple Comparators for Features.
FeatureDocument.javaInterface
FeatureFactory.javaInterface An interface for the construction of Features.

Geotools 2.0: As Features always require a FeatureType the best place to implement this is in the FeatureType itself, thus the FeatureType interface extends this interface.

FeatureFactoryImpl.javaClass Factory for creating instances of the Attribute family of classes.
FeatureFlatTest.javaClass
FeatureIndex.javaInterface An Index is built up around a FeatureCollection, using one of the attributes in the FeatureCollection as a comparable reference.

An object in a column can be any object, but must either be a java base-type Object (Integer, String, Character, etc.) or implement Comparable.

An Index built on such a column will sort its array of object references using FeatureComparator.

FeatureIterator.javaInterface A drop in replacement for Iterator that does not require casting for Java 1.4 code.
FeatureList.javaInterface An ordered List of Features.

A FeatureList is usually retrived from a FeatureCollection with the subCollection( Filter ) operation.

FeatureReaderIterator.javaClass An iterator that wraps around a FeatureReader.
FeatureType.javaInterface A metadata template for a Feature of arbitrary complexity.

Notes:

  • that this documentation should be read in conjunction with the Feature API.
  • the attributes described by this FeatureType and its ancestors define the complete schema for a Feature

    This interface answers the question: How do we represent features within GeoTools? Of course, the most general answer would be: features can be any Java object.

FeatureTypeBuilder.javaClass A schema builder, because FeatureTypes are meant to be immutable, this object is mutable.

The basic idea for usage is that you configure the builder to whatever state is desired, setting properties and adding AttributeTypes.

FeatureTypeFactory.javaClass Replaced with use of FeatureTypeBuilder to follow standard pattern naming conventions.
FeatureTypeFactoryTest.javaClass This simply tests and demonstrates how to make a new feature factory.
FeatureTypes.javaClass Utility methods for working against the FeatureType interface.
FeatureTypeTest.javaClass
FeatureWrappedComplexTest.javaClass Provides testing for a special type of Feature a Simple Feature wrapped in Complex clothing.
FlatFeatureFactorySpiTest.javaClass
GeometryAttributeType.javaInterface A CoordinateSystem aware Geometry AttributeType.

This class is the bridge between our FeatureType/AttributeType classes and the CoordianteSystem.

This also allows access to the GeometryFactory used by this GeometryAttributeType parse( Object ) method.

With JTS14 you can use GeometryFactory to to provide your own CoordianteSequence representation.

IllegalAttributeException.javaClass Indicates client class has attempted to create an invalid feature.
IndexedFeatureCollection.javaInterface An IndexedFeatureCollection extends the functionality of FeatureCollection by allowing FeatureIndex attachement.
MockFeatureCollection.javaClass
MockFeatureCollections.javaClass
MultiAttributeType.javaClass Class to handle more than one occurance of an attribute.
Name.javaClass Simple implementation of Name, hope to bring in line with GenericName.
PrimativeAttributeType.javaInterface Adds the ability to have restrictions on a particular data primitive in a declarative manner.
SampleFeatureFixtures.javaClass This is a support class which creates test features for use in testing.
Schema.javaClass This class contains utility methods focused on the schema represented by the FeatureType data model.

These methods are often used for implementation the convience methods such as FeatureType.getAttributeCount(), although they may be used directly with any FeatureType.

These schema methods are based on the *complete* picture indicated by a FeatureType and its ancestors.

SchemaException.javaClass Indicates client class has attempted to create an invalid schema.
SimpleFeature.javaInterface A simple feature is one that does not have any nested attributes, and that has no multiplicity for each attribute.
SimpleFeatureType.javaClass A basic implementation of FeatureType.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.