Examples of LTFilter


Examples of com.cetsoft.imcache.cache.search.filter.LTFilter

    cache.put(0, createObject(1, 1));
    cache.put(1, createObject(2, 2));
    cache.put(2, createObject(3, 3));
    List<SimpleObject> objects = cache
        .execute(CacheQuery.newQuery().setCriteria(new BetweenCriteria("j", 1, 3).or(new ETCriteria("j", 3)))
            .setFilter(new LTFilter("k", 3)));
    for (SimpleObject simpleObject : objects) {
      System.out.println(simpleObject);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.