com.scalar.db.sql.PredicateList Maven / Gradle / Ivy
package com.scalar.db.sql;
import java.util.List;
/** A predicate list in the query. */
public interface PredicateList {
/**
* Returns the list of {@code Predicate}.
*
* @return list of {@code Predicate}
*/
List getPredicates();
}