Class QueryPredicate<T>

java.lang.Object
org.nustaq.reallive.server.QueryPredicate<T>
All Implemented Interfaces:
java.io.Serializable, java.util.function.Predicate<T>, RLPredicate<T>

public class QueryPredicate<T>
extends java.lang.Object
implements RLPredicate<T>
Created by ruedi on 29/08/15.
See Also:
Serialized Form
  • Constructor Summary

    Constructors 
    Constructor Description
    QueryPredicate​(java.lang.String query)  
  • Method Summary

    Modifier and Type Method Description
    CompiledQuery getCompiled()  
    java.lang.String getQuery()  
    boolean test​(T t)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.nustaq.reallive.api.RLPredicate

    and, getRecordLimit, negate, or
  • Constructor Details

  • Method Details

    • getCompiled

      public CompiledQuery getCompiled()
    • getQuery

      public java.lang.String getQuery()
    • test

      public boolean test​(T t)
      Specified by:
      test in interface java.util.function.Predicate<T>