deegree 2.3 (2010/04/09 10:10 build-4-official)

Uses of Class
org.deegree.ogcbase.SortProperty

Packages that use SortProperty
org.deegree.io.datastore.sql   
org.deegree.io.datastore.sql.generic   
org.deegree.io.datastore.sql.mysql   
org.deegree.io.datastore.sql.oracle   
org.deegree.io.datastore.sql.postgis   
org.deegree.io.datastore.sql.wherebuilder   
org.deegree.ogcbase Provides common classes to deal with an OGC conform service instance. 
org.deegree.ogcwebservices.csw.discovery   
org.deegree.ogcwebservices.wfs.operation   
 

Uses of SortProperty in org.deegree.io.datastore.sql
 

Methods in org.deegree.io.datastore.sql with parameters of type SortProperty
 WhereBuilder AbstractSQLDatastore.getWhereBuilder(MappedFeatureType[] rootFts, String[] aliases, Filter filter, SortProperty[] sortProperties, TableAliasGenerator aliasGenerator, VirtualContentProvider vcProvider)
          Overwrite this to return a database specific (spatial capable) WhereBuilder implementation.
 

Uses of SortProperty in org.deegree.io.datastore.sql.generic
 

Methods in org.deegree.io.datastore.sql.generic with parameters of type SortProperty
 WhereBuilder GenericSQLDatastore.getWhereBuilder(MappedFeatureType[] rootFts, String[] aliases, Filter filter, SortProperty[] sortProperties, TableAliasGenerator aliasGenerator, VirtualContentProvider vcProvider)
           
 

Constructors in org.deegree.io.datastore.sql.generic with parameters of type SortProperty
GenericSQLWhereBuilder(MappedFeatureType[] rootFts, String[] aliases, Filter filter, SortProperty[] sortProperties, TableAliasGenerator aliasGenerator, VirtualContentProvider vcProvider, JDBCConnection jdbc)
          Creates a new instance of GenericSQLWhereBuilder from the given parameters.
 

Uses of SortProperty in org.deegree.io.datastore.sql.mysql
 

Methods in org.deegree.io.datastore.sql.mysql with parameters of type SortProperty
 MySQLWhereBuilder MySQLDatastore.getWhereBuilder(MappedFeatureType[] rootFts, String[] aliases, Filter filter, SortProperty[] sortProperties, TableAliasGenerator aliasGenerator, VirtualContentProvider vcProvider)
          Returns a specific WhereBuilder implementation for MySQL.
 

Constructors in org.deegree.io.datastore.sql.mysql with parameters of type SortProperty
MySQLWhereBuilder(MappedFeatureType[] rootFts, String[] aliases, Filter filter, SortProperty[] sortProperties, TableAliasGenerator aliasGenerator, VirtualContentProvider vcProvider)
          Creates a new instance of MySQLWhereBuilder from the given parameters.
 

Uses of SortProperty in org.deegree.io.datastore.sql.oracle
 

Methods in org.deegree.io.datastore.sql.oracle with parameters of type SortProperty
 WhereBuilder OracleDatastore.getWhereBuilder(MappedFeatureType[] rootFts, String[] aliases, Filter filter, SortProperty[] sortProperties, TableAliasGenerator aliasGenerator, VirtualContentProvider vcProvider)
          Returns a specific WhereBuilder implementation for Oracle Spatial.
 

Constructors in org.deegree.io.datastore.sql.oracle with parameters of type SortProperty
OracleSpatialWhereBuilder(MappedFeatureType[] rootFts, String[] aliases, Filter filter, SortProperty[] sortProperties, TableAliasGenerator aliasGenerator, VirtualContentProvider vcProvider)
          Creates a new instance of OracleSpatialWhereBuilder from the given parameters.
 

Uses of SortProperty in org.deegree.io.datastore.sql.postgis
 

Methods in org.deegree.io.datastore.sql.postgis with parameters of type SortProperty
 PostGISWhereBuilder PostGISDatastore.getWhereBuilder(MappedFeatureType[] rootFts, String[] aliases, Filter filter, SortProperty[] sortProperties, TableAliasGenerator aliasGenerator, VirtualContentProvider vcProvider)
          Returns a specific WhereBuilder implementation for PostGIS.
 

Constructors in org.deegree.io.datastore.sql.postgis with parameters of type SortProperty
PostGISWhereBuilder(MappedFeatureType[] rootFts, String[] aliases, Filter filter, SortProperty[] sortProperties, TableAliasGenerator aliasGenerator, VirtualContentProvider vcProvider)
          Creates a new instance of PostGISWhereBuilder from the given parameters.
 

Uses of SortProperty in org.deegree.io.datastore.sql.wherebuilder
 

Fields in org.deegree.io.datastore.sql.wherebuilder declared as SortProperty
protected  SortProperty[] WhereBuilder.sortProperties
           
 

Constructors in org.deegree.io.datastore.sql.wherebuilder with parameters of type SortProperty
WhereBuilder(MappedFeatureType[] rootFts, String[] aliases, Filter filter, SortProperty[] sortProperties, TableAliasGenerator aliasGenerator, VirtualContentProvider vcProvider)
          Creates a new WhereBuilder instance.
 

Uses of SortProperty in org.deegree.ogcbase
 

Methods in org.deegree.ogcbase that return SortProperty
static SortProperty SortProperty.create(Element element)
          Parses the given SortProperty element.
static SortProperty SortProperty.create(PropertyPath sortProperty, String sortOrderString)
          Creates a new SortProperty instance.
static SortProperty[] SortProperty.create(String sortBy, Map<String,URI> nscontext)
          Creates an array of SortProperty instances from the giving string encoding (as described in OGC 04-021r2, page 136).
 

Uses of SortProperty in org.deegree.ogcwebservices.csw.discovery
 

Methods in org.deegree.ogcwebservices.csw.discovery that return SortProperty
 SortProperty[] Query.getSortProperties()
          Ordered list of names of metadata elements to use for sorting the response.
 

Constructors in org.deegree.ogcwebservices.csw.discovery with parameters of type SortProperty
Query(String elementSetName, List<QualifiedName> elementSetNameTypeNames, Map<String,QualifiedName> elementSetNameVariables, List<PropertyPath> elementNames, Filter constraint, SortProperty[] sortProperties, List<QualifiedName> typeNames, Map<String,QualifiedName> typeNameVariables)
           
Query(String elementSetName, String[] elementNames, Filter constraint, SortProperty[] sortProperties, String[] typeNames)
          Creates a new Query instance.
 

Uses of SortProperty in org.deegree.ogcwebservices.wfs.operation
 

Methods in org.deegree.ogcwebservices.wfs.operation that return SortProperty
 SortProperty[] Query.getSortProperties()
          Returns the sort criteria for the result.
 

Methods in org.deegree.ogcwebservices.wfs.operation with parameters of type SortProperty
static Query Query.create(PropertyPath[] propertyNames, Function[] functions, SortProperty[] sortProperties, String handle, String featureVersion, QualifiedName[] typeNames, String[] aliases, String srsName, Filter filter, int maxFeatures, int startPosition, GetFeature.RESULT_TYPE resultType)
          Creates a new Query instance.
static Query Query.create(PropertyPath[] propertyNames, Function[] functions, SortProperty[] sortProperties, String handle, String featureVersion, QualifiedName[] typeNames, String srsName, Filter filter, int maxFeatures, int startPosition, GetFeature.RESULT_TYPE resultType)
          Deprecated. use create(PropertyPath[], Function[], SortProperty[], String, String, QualifiedName[], String[], String, Filter, int, int, RESULT_TYPE) instead
 

Constructors in org.deegree.ogcwebservices.wfs.operation with parameters of type SortProperty
Query(PropertyPath[] propertyNames, Function[] functions, SortProperty[] sortProperties, String handle, String featureVersion, QualifiedName[] typeNames, String[] aliases, String srsName, Filter filter, GetFeature.RESULT_TYPE resultType, int maxFeatures, int startPosition)
          Creates a new Query instance.
Query(PropertyPath[] propertyNames, Function[] functions, SortProperty[] sortProperties, String handle, String featureVersion, QualifiedName[] typeNames, String[] aliases, String srsName, Filter filter, GetFeature.RESULT_TYPE resultType, int maxFeatures, int startPosition, GetFeatureDocument.BBoxTest test)
           
 


deegree 2.3 (2010/04/09 10:10 build-4-official)

an open source project founded by lat/lon, Bonn, Germany.
For more information visit: http://www.deegree.org