public class WhereClause<S,T,U extends AbstractStatement<T>> extends Object
| Constructor and Description |
|---|
WhereClause(Function<T,S> whereField,
U statement)
General Class for holding the "Where" information of any SQL Statement.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getJoinClause() |
U |
gt() |
U |
gt(S gt) |
U |
in(S... inElements)
Checks the property to be one of the specified values of inElements.
|
U |
is()
Checks the property to be equal to given value.
|
U |
is(S isEqual)
Checks the property to be equal to isEqual.
|
U |
isNot(S isNot)
Checks the property to not be equal to isNot.
|
U |
isNull()
Checks the property to be null.
|
U |
lt() |
U |
lt(S lt) |
String |
toString() |
public U is()
public U isNot(S isNot)
isNot - public U is(S isEqual)
isEqual - public U in(S... inElements)
inElements - Array of Elements that are possible matchespublic U isNull()
public U gt()
public U lt()
public String getJoinClause()
Copyright © 2019. All rights reserved.