All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.j256.ormlite.stmt.query.NeedsFutureClause Maven / Gradle / Ivy

package com.j256.ormlite.stmt.query;

/**
 * 

* Internal interface which defines a clause that consumes a future clause. This allows us to do: *

* *
 * where.not();
 * where.eq("id", 1234);
 * 
* *

* and *

* *
 * where.eq("id", 1234);
 * where.and();
 * where.gt("age", 44);
 * 
* * @author graywatson */ public interface NeedsFutureClause extends Clause { /** * Set the right side of the binary operation. */ public void setMissingClause(Clause right); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy