T - type of conditionC - type of interface extended by this common interfacepublic interface AbstractIntegerConditions<T,C extends AbstractIntegerConditions> extends Conditions<T>
| 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
|
C |
not()
Negates this condition object.
|
verifyC not()
not in interface Conditions<T>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 © 2018 FluentLenium. All Rights Reserved.