|
Produced by Siminov Software Solution LLP | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectsiminov.orm.database.Clause
public class Clause
Field Summary |
---|
Fields inherited from interface siminov.orm.database.impl.ISelectClause |
---|
INTERFACE_NAME |
Fields inherited from interface siminov.orm.database.impl.IDeleteClause |
---|
INTERFACE_NAME |
Fields inherited from interface siminov.orm.database.impl.ICountClause |
---|
INTERFACE_NAME |
Fields inherited from interface siminov.orm.database.impl.ISumClause |
---|
INTERFACE_NAME |
Fields inherited from interface siminov.orm.database.impl.ITotalClause |
---|
INTERFACE_NAME |
Fields inherited from interface siminov.orm.database.impl.IAverageClause |
---|
INTERFACE_NAME |
Fields inherited from interface siminov.orm.database.impl.IMaxClause |
---|
INTERFACE_NAME |
Fields inherited from interface siminov.orm.database.impl.IMinClause |
---|
INTERFACE_NAME |
Fields inherited from interface siminov.orm.database.impl.IGroupConcatClause |
---|
INTERFACE_NAME |
Constructor Summary | |
---|---|
Clause(Select select)
|
Method Summary | |
---|---|
Select |
between(java.lang.String start,
java.lang.String end)
Used to specify BETWEEN condition. |
Select |
equalTo(java.lang.String value)
Used to specify EQUAL TO (=) condition. |
Select |
greaterThan(java.lang.String value)
Used to specify GREATER THAN (>) condition. |
Select |
greaterThanEqual(java.lang.String value)
Used to specify GREATER THAN EQUAL (>=) condition. |
Select |
in(java.lang.String... values)
Used to specify IN condition. |
Select |
lessThan(java.lang.String value)
Used to specify LESS THAN (<) condition. |
Select |
lessThanEqual(java.lang.String value)
Used to specify LESS THAN EQUAL (<=) condition. |
Select |
like(java.lang.String like)
Used to specify LIKE condition. |
Select |
notEqualTo(java.lang.String value)
Used to specify NOT EQUAL TO (!=) condition. |
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public Clause(Select select)
Method Detail |
---|
public Select equalTo(java.lang.String value)
ISelectClause
equalTo
in interface IAverageClause
equalTo
in interface ICountClause
equalTo
in interface IDeleteClause
equalTo
in interface IGroupConcatClause
equalTo
in interface IMaxClause
equalTo
in interface IMinClause
equalTo
in interface ISelectClause
equalTo
in interface ISumClause
equalTo
in interface ITotalClause
value
- Value for which EQUAL TO (=) condition will be applied.
public Select notEqualTo(java.lang.String value)
ISelectClause
notEqualTo
in interface IAverageClause
notEqualTo
in interface ICountClause
notEqualTo
in interface IDeleteClause
notEqualTo
in interface IGroupConcatClause
notEqualTo
in interface IMaxClause
notEqualTo
in interface IMinClause
notEqualTo
in interface ISelectClause
notEqualTo
in interface ISumClause
notEqualTo
in interface ITotalClause
value
- Value for which NOT EQUAL TO (=) condition will be applied.
public Select greaterThan(java.lang.String value)
ISelectClause
greaterThan
in interface IAverageClause
greaterThan
in interface ICountClause
greaterThan
in interface IDeleteClause
greaterThan
in interface IGroupConcatClause
greaterThan
in interface IMaxClause
greaterThan
in interface IMinClause
greaterThan
in interface ISelectClause
greaterThan
in interface ISumClause
greaterThan
in interface ITotalClause
value
- Value for while GREATER THAN (>) condition will be specified.
public Select greaterThanEqual(java.lang.String value)
ISelectClause
greaterThanEqual
in interface IAverageClause
greaterThanEqual
in interface ICountClause
greaterThanEqual
in interface IDeleteClause
greaterThanEqual
in interface IGroupConcatClause
greaterThanEqual
in interface IMaxClause
greaterThanEqual
in interface IMinClause
greaterThanEqual
in interface ISelectClause
greaterThanEqual
in interface ISumClause
greaterThanEqual
in interface ITotalClause
value
- Value for which GREATER THAN EQUAL (>=) condition will be specified.
public Select lessThan(java.lang.String value)
ISelectClause
lessThan
in interface IAverageClause
lessThan
in interface ICountClause
lessThan
in interface IDeleteClause
lessThan
in interface IGroupConcatClause
lessThan
in interface IMaxClause
lessThan
in interface IMinClause
lessThan
in interface ISelectClause
lessThan
in interface ISumClause
lessThan
in interface ITotalClause
value
- Value for which LESS THAN (<) condition will be specified.
public Select lessThanEqual(java.lang.String value)
ISelectClause
lessThanEqual
in interface IAverageClause
lessThanEqual
in interface ICountClause
lessThanEqual
in interface IDeleteClause
lessThanEqual
in interface IGroupConcatClause
lessThanEqual
in interface IMaxClause
lessThanEqual
in interface IMinClause
lessThanEqual
in interface ISelectClause
lessThanEqual
in interface ISumClause
lessThanEqual
in interface ITotalClause
value
- Value for which LESS THAN EQUAL (<=) condition will be specified.
public Select between(java.lang.String start, java.lang.String end)
ISelectClause
between
in interface IAverageClause
between
in interface ICountClause
between
in interface IDeleteClause
between
in interface IGroupConcatClause
between
in interface IMaxClause
between
in interface IMinClause
between
in interface ISelectClause
between
in interface ISumClause
between
in interface ITotalClause
start
- Start Range.end
- End Range.
public Select like(java.lang.String like)
ISelectClause
like
in interface IAverageClause
like
in interface ICountClause
like
in interface IDeleteClause
like
in interface IGroupConcatClause
like
in interface IMaxClause
like
in interface IMinClause
like
in interface ISelectClause
like
in interface ISumClause
like
in interface ITotalClause
like
- LIKE condition.
public Select in(java.lang.String... values)
ISelectClause
in
in interface IAverageClause
in
in interface ICountClause
in
in interface IDeleteClause
in
in interface IGroupConcatClause
in
in interface IMaxClause
in
in interface IMinClause
in
in interface ISelectClause
in
in interface ISumClause
in
in interface ITotalClause
values
- Values for IN condition.
public java.lang.String toString()
toString
in class java.lang.Object
|
Apache License 2.0 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |