Uses of Interface
org.opengis.filter.sort.SortBy

Packages that use SortBy
org.geotools.data Defines the DataStoreAPI via which all data is imported or exported. 
org.geotools.data.collection Implementations of FeatureCollection for different purposes. 
org.geotools.data.complex This package contains the implementation of a ComplexDataStore, Author note: though this "Complex" datastore has born to provide complex features out of a simple features data source, it may be better called a DerivativeDataStore or something like that, you'll see why later. 
org.geotools.data.gen   
org.geotools.data.joining   
org.geotools.data.simple   
org.geotools.data.sort   
org.geotools.data.store   
org.geotools.data.wfs.protocol.wfs   
org.geotools.data.wfs.v1_1_0   
org.geotools.feature   
org.geotools.feature.collection Helper classes for implementing FeatureCollections. 
org.geotools.filter   
org.geotools.jdbc   
org.opengis.filter Filters features according their properties. 
org.opengis.filter.sort An SortBy indicates the ordering requested during a data query. 
 

Uses of SortBy in org.geotools.data
 

Fields in org.geotools.data declared as SortBy
protected  SortBy[] Query.sortBy
          Sorting for the query
 

Methods in org.geotools.data that return SortBy
 SortBy[] Query.getSortBy()
          SortBy results according to indicated property and order.
 

Methods in org.geotools.data with parameters of type SortBy
 void Query.setSortBy(SortBy[] sortBy)
          Sets the sort by information.
 FeatureCollection<FeatureType,Feature> SampleDataAccessFeatureCollection.sort(SortBy order)
          Unsupported operation.
static Comparator<SimpleFeature> DataUtilities.sortComparator(SortBy sortBy)
          Factory method to produce Comparator based on provided Query SortBy information.
 boolean QueryCapabilities.supportsSorting(SortBy[] sortAttributes)
          Returns whether a list of properties can be used as SortBy keys.
 

Uses of SortBy in org.geotools.data.collection
 

Methods in org.geotools.data.collection with parameters of type SortBy
 SimpleFeatureCollection CollectionFeatureSource.SubCollection.sort(SortBy order)
           
 SimpleFeatureCollection SpatialIndexFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection ListFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection TreeSetFeatureCollection.sort(SortBy order)
           
 

Uses of SortBy in org.geotools.data.complex
 

Methods in org.geotools.data.complex with parameters of type SortBy
 FeatureCollection<FeatureType,Feature> MappingFeatureCollection.sort(SortBy order)
           
 

Uses of SortBy in org.geotools.data.gen
 

Methods in org.geotools.data.gen with parameters of type SortBy
 SimpleFeatureCollection PreGeneralizedFeatureCollection.sort(SortBy sortBy)
           
 

Uses of SortBy in org.geotools.data.joining
 

Fields in org.geotools.data.joining declared as SortBy
protected  SortBy[] JoiningQuery.QueryJoin.sortBy
           
 

Methods in org.geotools.data.joining that return SortBy
 SortBy[] JoiningQuery.QueryJoin.getSortBy()
           
 

Methods in org.geotools.data.joining with parameters of type SortBy
 void JoiningQuery.QueryJoin.setSortBy(SortBy[] sortBy)
           
 

Uses of SortBy in org.geotools.data.simple
 

Methods in org.geotools.data.simple with parameters of type SortBy
 SimpleFeatureCollection SimpleFeatureCollection.sort(SortBy order)
           
 

Uses of SortBy in org.geotools.data.sort
 

Methods in org.geotools.data.sort with parameters of type SortBy
static boolean SortedFeatureIterator.canSort(SimpleFeatureType schema, SortBy[] sortBy)
          Checks if the schema and the sortBy are suitable for merge/sort.
static boolean SortedFeatureReader.canSort(SimpleFeatureType schema, SortBy[] sortBy)
          Checks if the schema and the sortBy are suitable for merge/sort.
 

Constructors in org.geotools.data.sort with parameters of type SortBy
SortedFeatureIterator(SimpleFeatureIterator iterator, SimpleFeatureType schema, SortBy[] sortBy, int maxFeatures)
          Builds a new sorting feature iterator
SortedFeatureReader(SimpleFeatureReader reader, SortBy[] sortBy, int maxFeatures)
          Builds a new sorting feature reader
 

Uses of SortBy in org.geotools.data.store
 

Methods in org.geotools.data.store with parameters of type SortBy
 SimpleFeatureCollection ContentFeatureCollection.sort(SortBy sort)
           
 FeatureCollection<T,F> FilteringFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection ReprojectingFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection DataFeatureCollection.sort(SortBy order)
          Construct a sorted view of this content.
 FeatureCollection<T,F> MaxFeaturesFeatureCollection.sort(SortBy order)
           
 

Uses of SortBy in org.geotools.data.wfs.protocol.wfs
 

Methods in org.geotools.data.wfs.protocol.wfs that return SortBy
 SortBy[] GetFeature.getSortBy()
           
 

Uses of SortBy in org.geotools.data.wfs.v1_1_0
 

Methods in org.geotools.data.wfs.v1_1_0 that return SortBy
 SortBy[] GetFeatureQueryAdapter.getSortBy()
           
 

Uses of SortBy in org.geotools.feature
 

Methods in org.geotools.feature with parameters of type SortBy
 SimpleFeatureCollection DefaultFeatureCollection.sort(SortBy order)
          Construct a sorted view of this content.
 FeatureCollection<T,F> FeatureCollection.sort(SortBy order)
          Obtained sorted contents.
 

Uses of SortBy in org.geotools.feature.collection
 

Methods in org.geotools.feature.collection with parameters of type SortBy
 SimpleFeatureCollection AdaptorFeatureCollection.sort(SortBy order)
           
 FeatureCollection<T,F> BaseFeatureCollection.sort(SortBy order)
          Obtained sorted contents, only implemented for SimpleFeature at present.
 SimpleFeatureCollection DecoratingSimpleFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection MaxSimpleFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection FilteringSimpleFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection AbstractFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection BaseSimpleFeatureCollection.sort(SortBy order)
           
 FeatureCollection<T,F> DecoratingFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection SubFeatureCollection.sort(SortBy order)
           
 

Constructors in org.geotools.feature.collection with parameters of type SortBy
SortedSimpleFeatureCollection(SimpleFeatureCollection delegate, SortBy[] sort)
           
SubFeatureList(SimpleFeatureCollection list, Filter filter, SortBy subSort)
          Create a simple SubFeatureList with the provided filter.
SubFeatureList(SimpleFeatureCollection list, SortBy sort)
           
 

Uses of SortBy in org.geotools.filter
 

Subinterfaces of SortBy in org.geotools.filter
 interface SortBy
          Deprecated. Please use org.opengis.filter.sort.SortBy
 interface SortBy2
          GeoTools allows for more pervase use of Expression then is strictly supported by the specification.
 

Classes in org.geotools.filter that implement SortBy
 class SortByImpl
           
 

Methods in org.geotools.filter that return SortBy
 SortBy FilterFactoryImpl.sort(String propertyName, SortOrder order)
           
 

Uses of SortBy in org.geotools.jdbc
 

Methods in org.geotools.jdbc with parameters of type SortBy
protected  void JoiningJDBCFeatureSource.sort(String typeName, String alias, SortBy[] sort, Set<String> orderByFields, StringBuffer sql)
          Create order by field for specific table name
 

Uses of SortBy in org.opengis.filter
 

Methods in org.opengis.filter that return SortBy
 SortBy FilterFactory.sort(String propertyName, SortOrder order)
          Indicates an property by which contents should be sorted, along with intended order.
 

Uses of SortBy in org.opengis.filter.sort
 

Fields in org.opengis.filter.sort declared as SortBy
static SortBy SortBy.NATURAL_ORDER
          Used to indicate "natural" sorting order, usually according FID (hopefully based on Key attribtues).
static SortBy SortBy.REVERSE_ORDER
          Indicate the reverse order, usually assoicated with "Fid".
static SortBy[] SortBy.UNSORTED
          Used to indicate lack of a sorting order.
 



Copyright © 1996-2014 Geotools. All Rights Reserved.