Uses of Class
org.rococoa.cocoa.foundation.NSExpression

Packages that use NSExpression
org.rococoa.cocoa.foundation   
 

Uses of NSExpression in org.rococoa.cocoa.foundation
 

Methods in org.rococoa.cocoa.foundation that return NSExpression
static NSExpression NSExpression.alloc()
           
abstract  NSExpression NSExpression._class_.alloc()
           
static NSExpression NSExpression.createWithExpressionType(int type)
          Factory method
static NSExpression NSExpression.expressionForAggregate(NSArray subexpressions)
          Expression that returns a collection containing the results of other expressions
Original signature : +(NSExpression*)expressionForAggregate:(NSArray*)
native declaration : NSExpression.h:88
abstract  NSExpression NSExpression._class_.expressionForAggregate(NSArray subexpressions)
          Expression that returns a collection containing the results of other expressions
Original signature : +(NSExpression*)expressionForAggregate:(NSArray*)
native declaration : NSExpression.h:88
static NSExpression NSExpression.expressionForConstantValue(ObjCObject obj)
          Expression that returns a constant value
Original signature : +(NSExpression*)expressionForConstantValue:(id)
native declaration : NSExpression.h:44
abstract  NSExpression NSExpression._class_.expressionForConstantValue(ObjCObject obj)
          Expression that returns a constant value
Original signature : +(NSExpression*)expressionForConstantValue:(id)
native declaration : NSExpression.h:44
static NSExpression NSExpression.expressionForEvaluatedObject()
          Expression that returns the object being evaluated
Original signature : +(NSExpression*)expressionForEvaluatedObject
native declaration : NSExpression.h:45
abstract  NSExpression NSExpression._class_.expressionForEvaluatedObject()
          Expression that returns the object being evaluated
Original signature : +(NSExpression*)expressionForEvaluatedObject
native declaration : NSExpression.h:45
static NSExpression NSExpression.expressionForFunction_arguments(NSString name, NSArray parameters)
          Expression that invokes one of the predefined functions.
abstract  NSExpression NSExpression._class_.expressionForFunction_arguments(NSString name, NSArray parameters)
          Expression that invokes one of the predefined functions.
static NSExpression NSExpression.expressionForFunction_selectorName_arguments(NSExpression target, NSString name, NSArray parameters)
          Expression that invokes the selector on target with parameters.
abstract  NSExpression NSExpression._class_.expressionForFunction_selectorName_arguments(NSExpression target, NSString name, NSArray parameters)
          Expression that invokes the selector on target with parameters.
static NSExpression NSExpression.expressionForIntersectSet_with(NSExpression left, NSExpression right)
          return an expression that will return the intersection of the collections expressed by left and right
Original signature : +(NSExpression*)expressionForIntersectSet:(NSExpression*) with:(NSExpression*)
native declaration : NSExpression.h:90
abstract  NSExpression NSExpression._class_.expressionForIntersectSet_with(NSExpression left, NSExpression right)
          return an expression that will return the intersection of the collections expressed by left and right
Original signature : +(NSExpression*)expressionForIntersectSet:(NSExpression*) with:(NSExpression*)
native declaration : NSExpression.h:90
static NSExpression NSExpression.expressionForKeyPath(NSString keyPath)
          Expression that invokes valueForKeyPath with keyPath
Original signature : +(NSExpression*)expressionForKeyPath:(NSString*)
native declaration : NSExpression.h:47
abstract  NSExpression NSExpression._class_.expressionForKeyPath(NSString keyPath)
          Expression that invokes valueForKeyPath with keyPath
Original signature : +(NSExpression*)expressionForKeyPath:(NSString*)
native declaration : NSExpression.h:47
static NSExpression NSExpression.expressionForMinusSet_with(NSExpression left, NSExpression right)
          return an expression that will return the disjunction of the collections expressed by left and right
Original signature : +(NSExpression*)expressionForMinusSet:(NSExpression*) with:(NSExpression*)
native declaration : NSExpression.h:91
abstract  NSExpression NSExpression._class_.expressionForMinusSet_with(NSExpression left, NSExpression right)
          return an expression that will return the disjunction of the collections expressed by left and right
Original signature : +(NSExpression*)expressionForMinusSet:(NSExpression*) with:(NSExpression*)
native declaration : NSExpression.h:91
static NSExpression NSExpression.expressionForSubquery_usingIteratorVariable_predicate(NSExpression expression, NSString variable, ObjCObject predicate)
          Expression that filters a collection by storing elements in the collection in the variable variable and keeping the elements for which qualifer returns true; variable is used as a local variable, and will shadow any instances of variable in the bindings dictionary, the variable is removed or the old value replaced once evaluation completes
Original signature : +(NSExpression*)expressionForSubquery:(NSExpression*) usingIteratorVariable:(NSString*) predicate:(id)
native declaration : NSExpression.h:92
abstract  NSExpression NSExpression._class_.expressionForSubquery_usingIteratorVariable_predicate(NSExpression expression, NSString variable, ObjCObject predicate)
          Expression that filters a collection by storing elements in the collection in the variable variable and keeping the elements for which qualifer returns true; variable is used as a local variable, and will shadow any instances of variable in the bindings dictionary, the variable is removed or the old value replaced once evaluation completes
Original signature : +(NSExpression*)expressionForSubquery:(NSExpression*) usingIteratorVariable:(NSString*) predicate:(id)
native declaration : NSExpression.h:92
static NSExpression NSExpression.expressionForUnionSet_with(NSExpression left, NSExpression right)
          return an expression that will return the union of the collections expressed by left and right
Original signature : +(NSExpression*)expressionForUnionSet:(NSExpression*) with:(NSExpression*)
native declaration : NSExpression.h:89
abstract  NSExpression NSExpression._class_.expressionForUnionSet_with(NSExpression left, NSExpression right)
          return an expression that will return the union of the collections expressed by left and right
Original signature : +(NSExpression*)expressionForUnionSet:(NSExpression*) with:(NSExpression*)
native declaration : NSExpression.h:89
static NSExpression NSExpression.expressionForVariable(NSString string)
          Expression that pulls a value from the variable bindings dictionary
Original signature : +(NSExpression*)expressionForVariable:(NSString*)
native declaration : NSExpression.h:46
abstract  NSExpression NSExpression._class_.expressionForVariable(NSString string)
          Expression that pulls a value from the variable bindings dictionary
Original signature : +(NSExpression*)expressionForVariable:(NSString*)
native declaration : NSExpression.h:46
abstract  NSExpression NSExpression.initWithExpressionType(int type)
          designated initializer
Original signature : -(id)initWithExpressionType:(NSExpressionType)
native declaration : NSExpression.h:100
abstract  NSExpression NSExpression.leftExpression()
          expression which represents the left side of a set expression
Original signature : -(NSExpression*)leftExpression
native declaration : NSExpression.h:114
abstract  NSExpression NSComparisonPredicate.leftExpression()
          Original signature : -(NSExpression*)leftExpression
native declaration : NSComparisonPredicate.h:68
static NSExpression NSExpression.new_()
           
abstract  NSExpression NSExpression._class_.new_()
           
abstract  NSExpression NSExpression.operand()
          the object on which the selector will be invoked (the result of evaluating a key path or one of the defined functions)
Original signature : -(NSExpression*)operand
native declaration : NSExpression.h:108
abstract  NSExpression NSExpression.rightExpression()
          expression which represents the right side of a set expression
Original signature : -(NSExpression*)rightExpression
native declaration : NSExpression.h:115
abstract  NSExpression NSComparisonPredicate.rightExpression()
          Original signature : -(NSExpression*)rightExpression
native declaration : NSComparisonPredicate.h:69
 

Methods in org.rococoa.cocoa.foundation with parameters of type NSExpression
static NSComparisonPredicate NSComparisonPredicate.createWithLeftExpression_rightExpression_customSelector(NSExpression lhs, NSExpression rhs, Selector selector)
          Factory method
static NSComparisonPredicate NSComparisonPredicate.createWithLeftExpression_rightExpression_modifier_type_options(NSExpression lhs, NSExpression rhs, int modifier, int type, NSUInteger options)
          Factory method
static NSExpression NSExpression.expressionForFunction_selectorName_arguments(NSExpression target, NSString name, NSArray parameters)
          Expression that invokes the selector on target with parameters.
abstract  NSExpression NSExpression._class_.expressionForFunction_selectorName_arguments(NSExpression target, NSString name, NSArray parameters)
          Expression that invokes the selector on target with parameters.
static NSExpression NSExpression.expressionForIntersectSet_with(NSExpression left, NSExpression right)
          return an expression that will return the intersection of the collections expressed by left and right
Original signature : +(NSExpression*)expressionForIntersectSet:(NSExpression*) with:(NSExpression*)
native declaration : NSExpression.h:90
abstract  NSExpression NSExpression._class_.expressionForIntersectSet_with(NSExpression left, NSExpression right)
          return an expression that will return the intersection of the collections expressed by left and right
Original signature : +(NSExpression*)expressionForIntersectSet:(NSExpression*) with:(NSExpression*)
native declaration : NSExpression.h:90
static NSExpression NSExpression.expressionForMinusSet_with(NSExpression left, NSExpression right)
          return an expression that will return the disjunction of the collections expressed by left and right
Original signature : +(NSExpression*)expressionForMinusSet:(NSExpression*) with:(NSExpression*)
native declaration : NSExpression.h:91
abstract  NSExpression NSExpression._class_.expressionForMinusSet_with(NSExpression left, NSExpression right)
          return an expression that will return the disjunction of the collections expressed by left and right
Original signature : +(NSExpression*)expressionForMinusSet:(NSExpression*) with:(NSExpression*)
native declaration : NSExpression.h:91
static NSExpression NSExpression.expressionForSubquery_usingIteratorVariable_predicate(NSExpression expression, NSString variable, ObjCObject predicate)
          Expression that filters a collection by storing elements in the collection in the variable variable and keeping the elements for which qualifer returns true; variable is used as a local variable, and will shadow any instances of variable in the bindings dictionary, the variable is removed or the old value replaced once evaluation completes
Original signature : +(NSExpression*)expressionForSubquery:(NSExpression*) usingIteratorVariable:(NSString*) predicate:(id)
native declaration : NSExpression.h:92
abstract  NSExpression NSExpression._class_.expressionForSubquery_usingIteratorVariable_predicate(NSExpression expression, NSString variable, ObjCObject predicate)
          Expression that filters a collection by storing elements in the collection in the variable variable and keeping the elements for which qualifer returns true; variable is used as a local variable, and will shadow any instances of variable in the bindings dictionary, the variable is removed or the old value replaced once evaluation completes
Original signature : +(NSExpression*)expressionForSubquery:(NSExpression*) usingIteratorVariable:(NSString*) predicate:(id)
native declaration : NSExpression.h:92
static NSExpression NSExpression.expressionForUnionSet_with(NSExpression left, NSExpression right)
          return an expression that will return the union of the collections expressed by left and right
Original signature : +(NSExpression*)expressionForUnionSet:(NSExpression*) with:(NSExpression*)
native declaration : NSExpression.h:89
abstract  NSExpression NSExpression._class_.expressionForUnionSet_with(NSExpression left, NSExpression right)
          return an expression that will return the union of the collections expressed by left and right
Original signature : +(NSExpression*)expressionForUnionSet:(NSExpression*) with:(NSExpression*)
native declaration : NSExpression.h:89
abstract  NSComparisonPredicate NSComparisonPredicate.initWithLeftExpression_rightExpression_customSelector(NSExpression lhs, NSExpression rhs, Selector selector)
          Original signature : -(id)initWithLeftExpression:(NSExpression*) rightExpression:(NSExpression*) customSelector:(SEL)
native declaration : NSComparisonPredicate.h:64
abstract  NSComparisonPredicate NSComparisonPredicate.initWithLeftExpression_rightExpression_modifier_type_options(NSExpression lhs, NSExpression rhs, int modifier, int type, NSUInteger options)
          Original signature : -(id)initWithLeftExpression:(NSExpression*) rightExpression:(NSExpression*) modifier:(NSComparisonPredicateModifier) type:(NSPredicateOperatorType) options:(NSUInteger)
native declaration : NSComparisonPredicate.h:63
static NSPredicate NSComparisonPredicate.predicateWithLeftExpression_rightExpression_customSelector(NSExpression lhs, NSExpression rhs, Selector selector)
          Original signature : +(NSPredicate*)predicateWithLeftExpression:(NSExpression*) rightExpression:(NSExpression*) customSelector:(SEL)
native declaration : NSComparisonPredicate.h:61
abstract  NSPredicate NSComparisonPredicate._class_.predicateWithLeftExpression_rightExpression_customSelector(NSExpression lhs, NSExpression rhs, Selector selector)
          Original signature : +(NSPredicate*)predicateWithLeftExpression:(NSExpression*) rightExpression:(NSExpression*) customSelector:(SEL)
native declaration : NSComparisonPredicate.h:61
static NSPredicate NSComparisonPredicate.predicateWithLeftExpression_rightExpression_modifier_type_options(NSExpression lhs, NSExpression rhs, int modifier, int type, NSUInteger options)
          Original signature : +(NSPredicate*)predicateWithLeftExpression:(NSExpression*) rightExpression:(NSExpression*) modifier:(NSComparisonPredicateModifier) type:(NSPredicateOperatorType) options:(NSUInteger)
native declaration : NSComparisonPredicate.h:60
abstract  NSPredicate NSComparisonPredicate._class_.predicateWithLeftExpression_rightExpression_modifier_type_options(NSExpression lhs, NSExpression rhs, int modifier, int type, NSUInteger options)
          Original signature : +(NSPredicate*)predicateWithLeftExpression:(NSExpression*) rightExpression:(NSExpression*) modifier:(NSComparisonPredicateModifier) type:(NSPredicateOperatorType) options:(NSUInteger)
native declaration : NSComparisonPredicate.h:60
 



Copyright © 2009. All Rights Reserved.