Package org.geotools.data

Examples of org.geotools.data.FilteringFeatureWriter


        // if we are filtering wrap the writer so that it returns only the selected features
        // but writes down the mall
        Filter filter = query.getFilter();
        if (filter != null && !Filter.INCLUDE.equals(filter)) {
            writer = new FilteringFeatureWriter(writer, filter);
        }

        return writer;
    }
View Full Code Here


                writer = new EventContentFeatureWriter(this, writer );
            }
            // filtering
            if (!canFilter()) {
                if (query.getFilter() != null && query.getFilter() != Filter.INCLUDE) {
                    writer = new FilteringFeatureWriter(writer, query.getFilter());
                }
            }

            // Use InProcessLockingManager to assert write locks?
            if (!canLock()) {
View Full Code Here

            }
        }
       
        //check for post filter and wrap accordingly
        if ( postFilter != null && postFilter != Filter.INCLUDE ) {
            writer = new FilteringFeatureWriter( writer, postFilter );
        }
        return writer;
    }
View Full Code Here

    if (getLockingManager() != null) {
      writer = ((InProcessLockingManager) getLockingManager()).checkedWriter(writer, transaction);
    }

    if (filter != Filter.INCLUDE) {
      writer = new FilteringFeatureWriter(writer, filter);
    }

    return writer;
  }
View Full Code Here

    writer = source.getWriterInternal(
        state.getGeoWaveTransaction(typeName),
        filter);

    if (filter != Filter.INCLUDE) {
      writer = new FilteringFeatureWriter(
          writer,
          filter);
    }

    return writer;
View Full Code Here

TOP

Related Classes of org.geotools.data.FilteringFeatureWriter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.