Uses of Interface
com.speedment.jpastreamer.field.predicate.SpeedmentPredicate
Packages that use SpeedmentPredicate
Package
Description
The different types of predicates generated by Fields are located in this
package.
Traits used in Speedment fields are located in this package.
-
Uses of SpeedmentPredicate in com.speedment.jpastreamer.field.predicate
Subinterfaces of SpeedmentPredicate in com.speedment.jpastreamer.field.predicateModifier and TypeInterfaceDescriptioninterfaceCombinedPredicate<ENTITY>Aggregation of a number ofPredicatesof the same type (e.g.interfaceComposedPredicate<ENTITY,A> SpeedmentPredicate that composes aFunctionand anotherSpeedmentPredicate, testing the output of the function with the predicate to get the result.interfaceFieldIsNotNullPredicate<ENTITY,T> interfaceFieldIsNullPredicate<ENTITY,T> interfaceFieldPredicate<ENTITY>The base interface for allpredicatesgenerated by Speedment entity fields.Methods in com.speedment.jpastreamer.field.predicate that return SpeedmentPredicateModifier and TypeMethodDescriptiondefault SpeedmentPredicate<ENTITY>default SpeedmentPredicate<ENTITY>ComposedPredicate.negate()default SpeedmentPredicate<ENTITY>SpeedmentPredicate.negate()default SpeedmentPredicate<ENTITY>ComposedPredicate.secondStep() -
Uses of SpeedmentPredicate in com.speedment.jpastreamer.field.trait
Methods in com.speedment.jpastreamer.field.trait that return SpeedmentPredicateModifier and TypeMethodDescriptiondefault SpeedmentPredicate<ENTITY>Returns aPredicatethat will evaluate totrue, if and only if this Field is between the given values (exclusive the start value and the end value).Returns aPredicatethat will evaluate totrue, if and only if this Field is between the given values and taking the Inclusion parameter into account when determining if either of the end points shall be included in the Field range or not.Returns aPredicatethat will evaluate totrue, if and only if this Field contains the given value.HasStringOperators.containsIgnoreCase(String value) Returns aPredicatethat will evaluate totrue, if and only if this Field contains the given value while ignoring the case of the Strings that are compared.Returns aPredicatethat will evaluate totrue, if and only if this Field ends with the given value.HasStringOperators.endsWithIgnoreCase(String value) Returns aPredicatethat will evaluate totrue, if and only if this Field ends with the given value while ignoring the case of the Strings that are compared.HasBooleanOperators.equal(boolean value) Returns aPredicatethat will evaluate totrue, if and only if this Field is equal to the given value.Returns aPredicatethat will evaluate totrue, if and only if this Field is equal to the given value.HasStringOperators.equalIgnoreCase(String value) Returns aPredicatethat will evaluate totrue, if and only if this Field is equal to the given value while ignoring the case of the Strings that are compared.HasComparableOperators.greaterOrEqual(V value) Returns aPredicatethat will evaluate totrue, if and only if this Field is greater than or equal to the given value.HasComparableOperators.greaterThan(V value) Returns aPredicatethat will evaluate totrue, if and only if this Field is greater than the given value.HasComparableOperators.in(Collection<V> values) Returns aPredicatethat will evaluate totrue, if and only if this Field is in the given set.default SpeedmentPredicate<ENTITY>Returns aPredicatethat will evaluate totrue, if and only if this Field is in the set of given values.HasStringOperators.isEmpty()Returns aPredicatethat will evaluate totrue, if and only if this Field is empty.default SpeedmentPredicate<ENTITY>HasBooleanOperators.isFalse()Returns aPredicatethat will evaluate totrue, if and only if this Field is falsedefault SpeedmentPredicate<ENTITY>HasStringOperators.isNotEmpty()Returns aPredicatethat will evaluate totrue, if and only if this Field is not empty.default SpeedmentPredicate<ENTITY>HasReferenceOperators.isNotNull()HasReferenceOperators.isNull()default SpeedmentPredicate<ENTITY>HasBooleanOperators.isTrue()Returns aPredicatethat will evaluate totrue, if and only if this Field is trueHasComparableOperators.lessOrEqual(V value) Returns aPredicatethat will evaluate totrue, if and only if this Field is less than or equal to the given value.Returns aPredicatethat will evaluate totrue, if and only if this Field is less than the given value.default SpeedmentPredicate<ENTITY>HasComparableOperators.notBetween(V start, V end) Returns aPredicatethat will evaluate totrue, if and only if this Field is not between the given values (exclusive the start value and the end value).HasComparableOperators.notBetween(V start, V end, Inclusion inclusion) Returns aPredicatethat will evaluate totrue, if and only if this Field is not between the given values and taking the Inclusion parameter into account when determining if either of the end points shall be included in the Field range or not.default SpeedmentPredicate<ENTITY>HasStringOperators.notContains(String value) Returns aPredicatethat will evaluate totrue, if and only if this Field not contains the given value.default SpeedmentPredicate<ENTITY>HasStringOperators.notContainsIgnoreCase(String value) Returns aPredicatethat will evaluate totrue, if and only if this Field does not contain the given value while ignoring the case of the Strings that are compared.default SpeedmentPredicate<ENTITY>HasStringOperators.notEndsWith(String value) Returns aPredicatethat will evaluate totrue, if and only if this Field not ends with the given value.default SpeedmentPredicate<ENTITY>HasStringOperators.notEndsWithIgnoreCase(String value) Returns aPredicatethat will evaluate totrue, if and only if this Field not ends with the given value while ignoring the case of the Strings that are compared.HasBooleanOperators.notEqual(boolean value) Returns aPredicatethat will evaluate totrue, if and only if this Field is not equal to the given value.Returns aPredicatethat will evaluate totrue, if and only if this Field is not equal to the given value.default SpeedmentPredicate<ENTITY>HasStringOperators.notEqualIgnoreCase(String value) Returns aPredicatethat will evaluate totrue, if and only if this Field is not equal to the given value while ignoring the case of the Strings that are compared.HasComparableOperators.notIn(Collection<V> values) Returns aPredicatethat will evaluate totrue, if and only if this Field is not in the given Set.default SpeedmentPredicate<ENTITY>Returns aPredicatethat will evaluate totrue, if and only if this Field is not in the set of given values.default SpeedmentPredicate<ENTITY>HasStringOperators.notStartsWith(String value) Returns aPredicatethat will evaluate totrue, if and only if this Field not starts with the given value.default SpeedmentPredicate<ENTITY>HasStringOperators.notStartsWithIgnoreCase(String value) Returns aPredicatethat will evaluate totrue, if and only if this Field not starts with the given value while ignoring the case of the Strings that are compared.HasStringOperators.startsWith(String value) Returns aPredicatethat will evaluate totrue, if and only if this Field starts with the given value.HasStringOperators.startsWithIgnoreCase(String value) Returns aPredicatethat will evaluate totrue, if and only if this Field starts with the given value while ignoring the case of the Strings that are compared.