Class ColumnRestriction
java.lang.Object
com.influxdb.query.dsl.functions.restriction.ColumnRestriction
The column restrictions.
- Author:
- Jakub Bednar (bednar@github) (28/06/2018 13:04)
-
Method Summary
Modifier and TypeMethodDescriptionCheck if an record contains a key or if that key’s value is null.Is column of record "operator
" thanvalue
?Is column of record "equal" thanvalue
?exists()
Check if an record contains a key or if that key’s value is null.Is column of record "greater" thanvalue
?greaterOrEqual
(Object value) Is column of record "greater or equal" thanvalue
?Is column of record "less" thanvalue
?lessOrEqual
(Object value) Is column of record "less or equal" thanvalue
?Is column of record "not equal" thanvalue
?
-
Method Details
-
equal
Is column of record "equal" thanvalue
?- Parameters:
value
- the value to compare- Returns:
- restriction
-
notEqual
Is column of record "not equal" thanvalue
?- Parameters:
value
- the value to compare- Returns:
- restriction
-
less
Is column of record "less" thanvalue
?- Parameters:
value
- the value to compare- Returns:
- restriction
-
greater
Is column of record "greater" thanvalue
?- Parameters:
value
- the value to compare- Returns:
- restriction
-
lessOrEqual
Is column of record "less or equal" thanvalue
?- Parameters:
value
- the value to compare- Returns:
- restriction
-
greaterOrEqual
Is column of record "greater or equal" thanvalue
?- Parameters:
value
- the value to compare- Returns:
- restriction
-
custom
Is column of record "operator
" thanvalue
?- Parameters:
value
- the value to compareoperator
- the restriction operator- Returns:
- restriction
-
exists
Check if an record contains a key or if that key’s value is null.- Returns:
- restriction
-
contains
Check if an record contains a key or if that key’s value is null.- Returns:
- restriction
-