org.geotools.data.Query.setNamespace()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(164)

本文整理了Java中org.geotools.data.Query.setNamespace方法的一些代码示例,展示了Query.setNamespace的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.setNamespace方法的具体详情如下:
包路径:org.geotools.data.Query
类名称:Query
方法名:setNamespace

Query.setNamespace介绍

[英]Set the namespace of the feature type to be queried.
[中]设置要查询的要素类型的命名空间。

代码示例

代码示例来源:origin: geotools/geotools

  1. private Query namedQuery(Filter filter, int countLimit, boolean isJoining, Hints hints) {
  2. Query query = isJoining ? new JoiningQuery() : new Query();
  3. if (getName().getNamespaceURI() != null) {
  4. try {
  5. query.setNamespace(new URI(getName().getNamespaceURI()));
  6. } catch (URISyntaxException e) {
  7. throw new RuntimeException(e);
  8. }
  9. }
  10. query.setTypeName(getName().getLocalPart());
  11. query.setFilter(filter);
  12. query.setMaxFeatures(countLimit);
  13. query.setHints(hints);
  14. return query;
  15. }

代码示例来源:origin: org.geotools/gt-app-schema

  1. private Query namedQuery(Filter filter, int countLimit, boolean isJoining) {
  2. Query query = isJoining ? new JoiningQuery() : new Query();
  3. if (getName().getNamespaceURI() != null) {
  4. try {
  5. query.setNamespace(new URI(getName().getNamespaceURI()));
  6. } catch (URISyntaxException e) {
  7. throw new RuntimeException(e);
  8. }
  9. }
  10. query.setTypeName(getName().getLocalPart());
  11. query.setFilter(filter);
  12. query.setMaxFeatures(countLimit);
  13. return query;
  14. }

代码示例来源:origin: org.geoserver.csw/csw-core

  1. q.setSortBy(query.getSortBy());
  2. try {
  3. q.setNamespace(new URI(typeName.getNamespaceURI()));
  4. } catch (URISyntaxException e) { }

代码示例来源:origin: org.geoserver.csw/gs-csw-core

  1. q.setSortBy(query.getSortBy());
  2. try {
  3. q.setNamespace(new URI(typeName.getNamespaceURI()));
  4. } catch (URISyntaxException e) {

代码示例来源:origin: org.geoserver.csw/csw-api

  1. @Test
  2. public void testNamespaceSupport() throws IOException, URISyntaxException {
  3. AbstractCatalogStore store = new AbstractCatalogStore() {
  4. {
  5. support(CSWRecordDescriptor.getInstance());
  6. support(GSRecordDescriptor.getInstance());
  7. }
  8. @Override
  9. public FeatureCollection getRecordsInternal(RecordDescriptor rd, RecordDescriptor rdOutput,
  10. Query q, Transaction t) throws IOException {
  11. if(rd == GSRecordDescriptor.getInstance()) {
  12. return new MemoryFeatureCollection(GSRecordDescriptor.getInstance().getFeatureType());
  13. } else {
  14. throw new RuntimeException("Was expecting the geoserver record descriptor");
  15. }
  16. }
  17. };
  18. RecordDescriptor[] descriptors = store.getRecordDescriptors();
  19. assertEquals(2, descriptors.length);
  20. assertEquals(CSWRecordDescriptor.getInstance(), descriptors[0]);
  21. assertEquals(GSRecordDescriptor.getInstance(), descriptors[1]);
  22. Query query = new Query("Record");
  23. query.setNamespace(new URI(GSRecordDescriptor.GS_NAMESPACE));
  24. FeatureCollection records = store.getRecords(query, Transaction.AUTO_COMMIT, null);
  25. assertEquals(GSRecordDescriptor.getInstance().getFeatureType(), records.getSchema());
  26. }

相关文章