Package net.opengis.wfs20
Interface QueryType
-
- All Superinterfaces:
AbstractAdhocQueryExpressionType
,AbstractQueryExpressionType
,EObject
,Notifier
- All Known Implementing Classes:
QueryTypeImpl
public interface QueryType extends AbstractAdhocQueryExpressionType
A representation of the model object 'Query Type'.The following features are supported:
- See Also:
Wfs20Package.getQueryType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFeatureVersion()
Returns the value of the 'Feature Version' attribute.Filter
getFilter()
Convenience method to castAbstractAdhocQueryExpressionType.getAbstractSelectionClause()
to a filter object.EList<QName>
getPropertyNames()
Convenience method to castAbstractAdhocQueryExpressionType.getAbstractProjectionClause()
to list of QName.EList<SortBy>
getSortBy()
Convenience method to castAbstractAdhocQueryExpressionType.getAbstractSortingClause()
to a list of SortBy.URI
getSrsName()
Returns the value of the 'Srs Name' attribute.void
setFeatureVersion(String value)
Sets the value of the 'Feature Version
' attribute.void
setFilter(Filter value)
Sets the value of the 'Filter
' attribute.void
setSrsName(URI value)
Sets the value of the 'Srs Name
' attribute.-
Methods inherited from interface AbstractAdhocQueryExpressionType
getAbstractProjectionClause, getAbstractSelectionClause, getAbstractSortingClause, getAliases, getTypeNames, setAbstractSelectionClause, setAbstractSortingClause
-
Methods inherited from interface AbstractQueryExpressionType
getHandle, setHandle
-
-
-
-
Method Detail
-
getFeatureVersion
String getFeatureVersion()
Returns the value of the 'Feature Version' attribute.If the meaning of the 'Feature Version' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Feature Version' attribute.
- See Also:
setFeatureVersion(String)
,Wfs20Package.getQueryType_FeatureVersion()
-
setFeatureVersion
void setFeatureVersion(String value)
Sets the value of the 'Feature Version
' attribute.- Parameters:
value
- the new value of the 'Feature Version' attribute.- See Also:
getFeatureVersion()
-
getSrsName
URI getSrsName()
Returns the value of the 'Srs Name' attribute.If the meaning of the 'Srs Name' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Srs Name' attribute.
- See Also:
setSrsName(URI)
,Wfs20Package.getQueryType_SrsName()
-
setSrsName
void setSrsName(URI value)
Sets the value of the 'Srs Name
' attribute.- Parameters:
value
- the new value of the 'Srs Name' attribute.- See Also:
getSrsName()
-
getFilter
Filter getFilter()
Convenience method to castAbstractAdhocQueryExpressionType.getAbstractSelectionClause()
to a filter object.
-
setFilter
void setFilter(Filter value)
Sets the value of the 'Filter
' attribute.- Parameters:
value
- the new value of the 'Filter' attribute.- See Also:
getFilter()
-
getPropertyNames
EList<QName> getPropertyNames()
Convenience method to castAbstractAdhocQueryExpressionType.getAbstractProjectionClause()
to list of QName.
-
getSortBy
EList<SortBy> getSortBy()
Convenience method to castAbstractAdhocQueryExpressionType.getAbstractSortingClause()
to a list of SortBy.
-
-