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

com.github.antelopeframework.mybatis.criterion.Disjunction Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
package com.github.antelopeframework.mybatis.criterion;

/**
 * Defines a disjunction (OR series).
 *
 * @author yangzhi.yzh
 *
 * @see Conjunction
 */
public class Disjunction extends Junction {
	private static final long serialVersionUID = 1L;

	/**
	 * Constructs a Disjunction
	 */
	protected Disjunction() {
		super( Nature.OR );
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy