Java Code Examples for org.opengis.filter.FilterFactory#like()

The following examples show how to use org.opengis.filter.FilterFactory#like() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ElasticFeatureFilterIT.java    From elasticgeo with GNU General Public License v3.0 5 votes vote down vote up
@Test
public void testGetFeaturesWithIsLikeFilter() throws Exception {
    init();
    FilterFactory ff = dataStore.getFilterFactory();
    PropertyIsLike f = ff.like(ff.property("standard_ss"), "IEEE 802.11?");
    SimpleFeatureCollection features = featureSource.getFeatures(f);
    assertEquals(11, features.size());
}