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