Package | Description |
---|---|
com.redhat.thermostat.storage.query |
Modifier and Type | Method and Description |
---|---|
<T> BinaryComparisonExpression<T> |
ExpressionFactory.equalTo(Key<T> key,
T value)
Creates a
BinaryComparisonExpression comparing the
provided key and value for equality. |
<T> BinaryComparisonExpression<T> |
ExpressionFactory.greaterThan(Key<T> key,
T value)
Creates a
BinaryComparisonExpression comparing if the
provided key has a value greater than the provided value. |
<T> BinaryComparisonExpression<T> |
ExpressionFactory.greaterThanOrEqualTo(Key<T> key,
T value)
Creates a
BinaryComparisonExpression comparing if the
provided key has a value greater than or equal to the provided value. |
<T> BinaryComparisonExpression<T> |
ExpressionFactory.lessThan(Key<T> key,
T value)
Creates a
BinaryComparisonExpression comparing if the
provided key has a value less than the provided value. |
<T> BinaryComparisonExpression<T> |
ExpressionFactory.lessThanOrEqualTo(Key<T> key,
T value)
Creates a
BinaryComparisonExpression comparing if the
provided key has a value less than or equal to the provided value. |
<T> BinaryComparisonExpression<T> |
ExpressionFactory.notEqualTo(Key<T> key,
T value)
Creates a
BinaryComparisonExpression comparing the
provided key and value for inequality. |
Copyright © 2014. All Rights Reserved.