| Package | Description |
|---|---|
| com.github.mohitgoyal91.cosmosdbqueryutils | |
| com.github.mohitgoyal91.cosmosdbqueryutils.restriction |
| Modifier and Type | Method and Description |
|---|---|
ComparisonRestriction |
RestrictionBuilder.eq(String propertyName,
Object value)
To introduce a = restriction in the query
|
ComparisonRestriction |
RestrictionBuilder.gt(String propertyName,
Object value)
To introduce a > restriction in the query
|
ComparisonRestriction |
RestrictionBuilder.gte(String propertyName,
Object value)
To introduce a >= restriction in the query
|
ComparisonRestriction |
RestrictionBuilder.id(String id)
To create query with id restriction
|
ComparisonRestriction |
RestrictionBuilder.lt(String propertyName,
Object value)
To introduce a < restriction in the query
|
ComparisonRestriction |
RestrictionBuilder.lte(String propertyName,
Object value)
To introduce a <= restriction in the query
|
ComparisonRestriction |
RestrictionBuilder.notEq(String propertyName,
Object value)
To introduce a != restriction in the query
|
| Modifier and Type | Method and Description |
|---|---|
ComparisonRestriction |
ComparisonRestriction.and()
to separate the previous and next restrictions by an 'AND'
|
ComparisonRestriction |
ComparisonRestriction.eq(String propertyName,
Object value)
To introduce a = restriction in the query
|
ComparisonRestriction |
ComparisonRestriction.gt(String propertyName,
Object value)
To introduce a > restriction in the query
|
ComparisonRestriction |
ComparisonRestriction.gte(String propertyName,
Object value)
To introduce a >= restriction in the query
|
ComparisonRestriction |
ComparisonRestriction.lt(String propertyName,
Object value)
To introduce a < restriction in the query
|
ComparisonRestriction |
ComparisonRestriction.lte(String propertyName,
Object value)
To introduce a <= restriction in the query
|
ComparisonRestriction |
ComparisonRestriction.notEq(String propertyName,
Object value)
To introduce a != restriction in the query
|
ComparisonRestriction |
ComparisonRestriction.or()
to separate the previous and next restrictions by an 'OR'
|
Copyright © 2020. All rights reserved.