net.turnbig.qb.segment.impl.combined.OrSegment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of query-builder Show documentation
Show all versions of query-builder Show documentation
Criterion for jdbc, but not only Criterion
The newest version!
package net.turnbig.qb.segment.impl.combined;
/**
* @author wuqb
* @date 2010-9-10
* @version $Revision$
*/
public class OrSegment extends CombinedSqlSegment {
/*
* (non-Javadoc)
*
* @see edu.woo.qb.test.QueryCondition#getCondition()
*/
@Override
public String asSql() {
return this.join("(", ")", "or");
}
}