public interface IntegerConditions extends Conditions<Integer>
| Modifier and Type | Method and Description |
|---|---|
boolean |
equalTo(int value)
Check that this is equal to given value
|
boolean |
greaterThan(int value)
Check that this is greater than given value
|
boolean |
greaterThanOrEqualTo(int value)
Check that this is greater than or equal given value
|
boolean |
lessThan(int value)
Check that this is less than given value
|
boolean |
lessThanOrEqualTo(int value)
Check that this is less than or equal given value
|
IntegerConditions |
not()
Negates this condition object.
|
verifyIntegerConditions not()
Conditionsnot in interface Conditions<Integer>boolean equalTo(int value)
value - the value to compare withboolean lessThan(int value)
value - the value to compare withboolean lessThanOrEqualTo(int value)
value - the value to compare withboolean greaterThan(int value)
value - the value to compare withboolean greaterThanOrEqualTo(int value)
value - the value to compare withCopyright © 2016 FluentLenium. All Rights Reserved.