R - return typepublic interface HasOnPredicates<R>
| Modifier and Type | Method and Description |
|---|---|
R |
equal(com.speedment.runtime.field.trait.HasComparableOperators<?,?> joinedField)
Adds an operation where a previous field is compared to the given
joinedField and whereby the operation returns true if and only
the previous field is equal to the given joinedField. |
R |
greaterOrEqual(com.speedment.runtime.field.trait.HasComparableOperators<?,?> joinedField)
Adds an operation where a previous field is compared to the given
joinedField and whereby the operation returns true if and only
the previous field is greater or equal to the given
joinedField. |
R |
greaterThan(com.speedment.runtime.field.trait.HasComparableOperators<?,?> joinedField)
Adds an operation where a previous field is compared to the given
joinedField and whereby the operation returns true if and only
the previous field is greater than the given
joinedField. |
R |
lessOrEqual(com.speedment.runtime.field.trait.HasComparableOperators<?,?> joinedField)
Adds an operation where a previous field is compared to the given
joinedField and whereby the operation returns true if and only
the previous field is less or equal to the given
joinedField. |
R |
lessThan(com.speedment.runtime.field.trait.HasComparableOperators<?,?> joinedField)
Adds an operation where a previous field is compared to the given
joinedField and whereby the operation returns true if and only
the previous field is less than the given joinedField. |
R |
notEqual(com.speedment.runtime.field.trait.HasComparableOperators<?,?> joinedField)
Adds an operation where a previous field is compared to the given
joinedField and whereby the operation returns true if and only
the previous field is not equal to the given
joinedField. |
R equal(com.speedment.runtime.field.trait.HasComparableOperators<?,?> joinedField)
joinedField and whereby the operation returns true if and only
the previous field is equal to the given joinedField.joinedField - to use by the operationNullPointerException - if the provided joinedField is
null.R notEqual(com.speedment.runtime.field.trait.HasComparableOperators<?,?> joinedField)
joinedField and whereby the operation returns true if and only
the previous field is not equal to the given
joinedField.joinedField - to use by the operationNullPointerException - if the provided joinedField is
null.R lessThan(com.speedment.runtime.field.trait.HasComparableOperators<?,?> joinedField)
joinedField and whereby the operation returns true if and only
the previous field is less than the given joinedField.joinedField - to use by the operationNullPointerException - if the provided joinedField is
null.R lessOrEqual(com.speedment.runtime.field.trait.HasComparableOperators<?,?> joinedField)
joinedField and whereby the operation returns true if and only
the previous field is less or equal to the given
joinedField.joinedField - to use by the operationNullPointerException - if the provided joinedField is
null.R greaterThan(com.speedment.runtime.field.trait.HasComparableOperators<?,?> joinedField)
joinedField and whereby the operation returns true if and only
the previous field is greater than the given
joinedField.joinedField - to use by the operationNullPointerException - if the provided joinedField is
null.R greaterOrEqual(com.speedment.runtime.field.trait.HasComparableOperators<?,?> joinedField)
joinedField and whereby the operation returns true if and only
the previous field is greater or equal to the given
joinedField.joinedField - to use by the operationNullPointerException - if the provided joinedField is
null.Copyright © 2019 Speedment, Inc.. All rights reserved.