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

top.jfunc.common.db.condition.Disjunction Maven / Gradle / Ivy

The newest version!
package top.jfunc.common.db.condition;

/**
 * @author chenzhaoju
 */
public class Disjunction extends Junction {

    protected Disjunction() {
        super( Nature.OR );
    }

    protected Disjunction(Criterion[] conditions) {
        super( Nature.OR, conditions );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy