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

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

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

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

	/**
	 * Constructs a Conjunction
	 */
	public Conjunction() {
		super( Nature.AND );
	}

	protected Conjunction(Criterion... criterion) {
		super( Nature.AND, criterion );
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy