public static interface ColumnQueryMapper.ColumnMapperDeleteNameCondition
| Modifier and Type | Method and Description |
|---|---|
<T> ColumnQueryMapper.ColumnMapperDeleteWhere |
between(T valueA,
T valueB)
Creates the between condition
Condition.EQUALS |
<T> ColumnQueryMapper.ColumnMapperDeleteWhere |
eq(T value)
Creates the equals condition
Condition.EQUALS |
<T> ColumnQueryMapper.ColumnMapperDeleteWhere |
gt(T value)
Creates the greater than condition
Condition.GREATER_THAN |
<T> ColumnQueryMapper.ColumnMapperDeleteWhere |
gte(T value)
Creates the greater equals than condition
Condition.GREATER_EQUALS_THAN |
<T> ColumnQueryMapper.ColumnMapperDeleteWhere |
in(Iterable<T> values)
Creates in condition
Condition.IN |
ColumnQueryMapper.ColumnMapperDeleteWhere |
like(String value)
Creates the like condition
Condition.LIKE |
<T> ColumnQueryMapper.ColumnMapperDeleteWhere |
lt(T value)
Creates the lesser than condition
Condition.LESSER_THAN |
<T> ColumnQueryMapper.ColumnMapperDeleteWhere |
lte(T value)
Creates the lesser equals than condition
Condition.LESSER_EQUALS_THAN |
ColumnQueryMapper.ColumnMapperDeleteNotCondition |
not()
Creates the equals condition
Condition.NOT |
<T> ColumnQueryMapper.ColumnMapperDeleteWhere eq(T value)
Condition.EQUALST - the typevalue - the value to the conditionColumnQueryMapper.ColumnMapperDeleteWhereNullPointerException - when value is nullColumnQueryMapper.ColumnMapperDeleteWhere like(String value)
Condition.LIKEvalue - the value to the conditionColumnQueryMapper.ColumnMapperDeleteWhereNullPointerException - when value is null<T> ColumnQueryMapper.ColumnMapperDeleteWhere gt(T value)
Condition.GREATER_THANT - the typevalue - the value to the conditionColumnQueryMapper.ColumnMapperDeleteWhereNullPointerException - when value is null<T> ColumnQueryMapper.ColumnMapperDeleteWhere gte(T value)
Condition.GREATER_EQUALS_THANT - the typevalue - the value to the conditionColumnQueryMapper.ColumnMapperDeleteWhereNullPointerException - when value is null<T> ColumnQueryMapper.ColumnMapperDeleteWhere lt(T value)
Condition.LESSER_THANT - the typevalue - the value to the conditionColumnQueryMapper.ColumnMapperDeleteWhereNullPointerException - when value is null<T> ColumnQueryMapper.ColumnMapperDeleteWhere lte(T value)
Condition.LESSER_EQUALS_THANT - the typevalue - the value to the conditionColumnQueryMapper.ColumnMapperDeleteWhereNullPointerException - when value is null<T> ColumnQueryMapper.ColumnMapperDeleteWhere between(T valueA, T valueB)
Condition.EQUALST - the typevalueA - the values within a given rangevalueB - the values within a given rangeColumnQueryMapper.ColumnMapperDeleteWhereNullPointerException - when either valueA or valueB are null<T> ColumnQueryMapper.ColumnMapperDeleteWhere in(Iterable<T> values)
Condition.INT - the typevalues - the valuesColumnQueryMapper.ColumnMapperDeleteWhereNullPointerException - when value is nullColumnQueryMapper.ColumnMapperDeleteNotCondition not()
Condition.NOTCopyright © 2017–2022 Eclipse Foundation. All rights reserved.