Tabnine Logo
FilteringFeatureCollection.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.geotools.data.store.FilteringFeatureCollection
constructor

Best Java code snippets using org.geotools.data.store.FilteringFeatureCollection.<init> (Showing top 12 results out of 315)

origin: geotools/geotools

/**
 * Convenience implementation that just wraps this collection into a {@link
 * FilteringFeatureCollection}. Subclasses might want to override this in case the filter can be
 * cascaded to their data sources.
 *
 * @param filter
 * @return
 */
public FeatureCollection<T, F> subCollection(Filter filter) {
  if (filter == Filter.INCLUDE) {
    return this;
  }
  return new FilteringFeatureCollection<T, F>(this, filter);
}
/**
origin: geoserver/geoserver

    new FilteringFeatureCollection<T, F>(collection, writeQuery.getFilter());
if (filtered.size() < collection.size()) {
  String typeName = getSchema().getName().getLocalPart();
origin: geotools/geotools

/**
 * Creates a new instance of FilteringIteration
 *
 * @param filter DOCUMENT ME!
 * @param collection DOCUMENT ME!
 */
public FilteringIteration(
    org.opengis.filter.Filter filter, FeatureCollection<?, ?> collection) {
  super(new FilterHandler(filter), new FilteringFeatureCollection(collection, filter));
}
origin: org.geotools/gt-process-feature

/**
 * Convenience implementation that just wraps this collection into a
 * {@link FilteringFeatureCollection}. Subclasses might want to override this in case the filter
 * can be cascaded to their data sources.
 * 
 * @param filter
 * @return
 */
@Override
public FeatureCollection<T, F> subCollection(Filter filter) {
  return new FilteringFeatureCollection<T, F>(this, filter);
}
origin: org.geoserver.csw/csw-simple-store

@Override
public FeatureCollection<FeatureType, Feature> subCollection(Filter filter) {
  return new FilteringFeatureCollection<FeatureType, Feature>(this, filter);
}
origin: org.geoserver.csw/gs-csw-core

@Override
public FeatureCollection<FeatureType, Feature> subCollection(Filter filter) {
  return new FilteringFeatureCollection<FeatureType, Feature>(this, filter);
}
origin: org.geoserver.csw/csw-core

@Override
public FeatureCollection<FeatureType, Feature> subCollection(Filter filter) {
  return new FilteringFeatureCollection<FeatureType, Feature>(this, filter);
}
origin: org.geoserver.csw/gs-csw-simple-store

@Override
public FeatureCollection<FeatureType, Feature> subCollection(Filter filter) {
  return new FilteringFeatureCollection<FeatureType, Feature>(this, filter);
}
origin: org.geotools/gt2-main

public FeatureCollection getFeatures(Filter filter) throws IOException {
  //filter
  if ( filter != null && !filter.equals( Filter.INCLUDE ) ) {
    return new FilteringFeatureCollection( getFeatures() , filter );
  }
  
  return getFeatures();
}
origin: org.geoserver.csw/csw-simple-store

Filter expanded = (Filter) filter.accept(expander, null);
records = new FilteringFeatureCollection<FeatureType, Feature>(records, expanded);
origin: org.geoserver.csw/gs-csw-simple-store

Filter expanded = (Filter) filter.accept(expander, null);
records = new FilteringFeatureCollection<FeatureType, Feature>(records, expanded);
origin: org.geoserver/gs-wms

match = new FilteringFeatureCollection(match, postFilter);
org.geotools.data.storeFilteringFeatureCollection<init>

Popular methods of FilteringFeatureCollection

  • size
  • add
  • close
  • contains
  • features
  • getSchema
  • iterator
  • toArray

Popular in Java

  • Updating database using SQL prepared statement
  • runOnUiThread (Activity)
  • onCreateOptionsMenu (Activity)
  • setScale (BigDecimal)
  • String (java.lang)
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • JLabel (javax.swing)
  • JPanel (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now