Ray points out these should be FluentExp's.

This commit is contained in:
Par Winzell
2010-04-07 18:34:23 +00:00
parent 31f5d593e5
commit 26ece1f2c0
@@ -218,27 +218,26 @@ public abstract class FluentExp
} }
/** Returns a {@link Like} on this column and the supplied target. */ /** Returns a {@link Like} on this column and the supplied target. */
public Like like (Comparable<?> value) public FluentExp like (Comparable<?> value)
{ {
return new Like(this, value, true); return new Like(this, value, true);
} }
/** Returns a {@link Like} on this column and the supplied target. */ /** Returns a {@link Like} on this column and the supplied target. */
public Like like (SQLExpression expr) public FluentExp like (SQLExpression expr)
{ {
return new Like(this, expr, true); return new Like(this, expr, true);
} }
/** Returns a negated {@link Like} on this column and the supplied target. */ /** Returns a negated {@link Like} on this column and the supplied target. */
public Like notLike (Comparable<?> value) public FluentExp notLike (Comparable<?> value)
{ {
return new Like(this, value, false); return new Like(this, value, false);
} }
/** Returns a negated {@link Like} on this column and the supplied target. */ /** Returns a negated {@link Like} on this column and the supplied target. */
public Like notLike (SQLExpression expr) public FluentExp notLike (SQLExpression expr)
{ {
return new Like(this, expr, false); return new Like(this, expr, false);
} }
} }