org.hibernate.criterion.Conjunction Maven / Gradle / Ivy
The newest version!
package org.hibernate.criterion;
/**
* @author Gavin King
*/
public class Conjunction extends Junction {
public Conjunction() {
super("and");
}
}