org.hibernate.criterion.Disjunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
package org.hibernate.criterion;
/**
* @author Gavin King
*/
public class Disjunction extends Junction {
protected Disjunction() {
super("or");
}
}