Package apple.foundation.enums
Class NSPredicateOperatorType
- java.lang.Object
-
- apple.foundation.enums.NSPredicateOperatorType
-
public final class NSPredicateOperatorType extends java.lang.ObjectType basic set of operators defined. Most are obvious; NSCustomSelectorPredicateOperatorType allows a developer to create an operator which uses the custom selector specified in the constructor to do the evaluation.
-
-
Field Summary
Fields Modifier and Type Field Description static longBeginsWithPredicateOperatorTypestatic longBetweenPredicateOperatorTypestatic longContainsPredicateOperatorTypelhs contains rhs returns truestatic longCustomSelectorPredicateOperatorTypestatic longEndsWithPredicateOperatorTypestatic longEqualToPredicateOperatorTypeisEqual: returns truestatic longGreaterThanOrEqualToPredicateOperatorTypecompare: returns NSOrderedDescending || NSOrderedSamestatic longGreaterThanPredicateOperatorTypecompare: returns NSOrderedDescendingstatic longInPredicateOperatorTyperhs contains lhs returns truestatic longLessThanOrEqualToPredicateOperatorTypecompare: returns NSOrderedAscending || NSOrderedSamestatic longLessThanPredicateOperatorTypecompare: returns NSOrderedAscendingstatic longLikePredicateOperatorTypestatic longMatchesPredicateOperatorTypestatic longNotEqualToPredicateOperatorTypeisEqual: returns false
-
-
-
Field Detail
-
LessThanPredicateOperatorType
public static final long LessThanPredicateOperatorType
compare: returns NSOrderedAscending- See Also:
- Constant Field Values
-
LessThanOrEqualToPredicateOperatorType
public static final long LessThanOrEqualToPredicateOperatorType
compare: returns NSOrderedAscending || NSOrderedSame- See Also:
- Constant Field Values
-
GreaterThanPredicateOperatorType
public static final long GreaterThanPredicateOperatorType
compare: returns NSOrderedDescending- See Also:
- Constant Field Values
-
GreaterThanOrEqualToPredicateOperatorType
public static final long GreaterThanOrEqualToPredicateOperatorType
compare: returns NSOrderedDescending || NSOrderedSame- See Also:
- Constant Field Values
-
EqualToPredicateOperatorType
public static final long EqualToPredicateOperatorType
isEqual: returns true- See Also:
- Constant Field Values
-
NotEqualToPredicateOperatorType
public static final long NotEqualToPredicateOperatorType
isEqual: returns false- See Also:
- Constant Field Values
-
MatchesPredicateOperatorType
public static final long MatchesPredicateOperatorType
- See Also:
- Constant Field Values
-
LikePredicateOperatorType
public static final long LikePredicateOperatorType
- See Also:
- Constant Field Values
-
BeginsWithPredicateOperatorType
public static final long BeginsWithPredicateOperatorType
- See Also:
- Constant Field Values
-
EndsWithPredicateOperatorType
public static final long EndsWithPredicateOperatorType
- See Also:
- Constant Field Values
-
InPredicateOperatorType
public static final long InPredicateOperatorType
rhs contains lhs returns true- See Also:
- Constant Field Values
-
CustomSelectorPredicateOperatorType
public static final long CustomSelectorPredicateOperatorType
- See Also:
- Constant Field Values
-
ContainsPredicateOperatorType
public static final long ContainsPredicateOperatorType
lhs contains rhs returns true- See Also:
- Constant Field Values
-
BetweenPredicateOperatorType
public static final long BetweenPredicateOperatorType
- See Also:
- Constant Field Values
-
-