SICIAverageClause Protocol Reference

Conforms to NSObject
Declared in SICIAverageClause.h

Overview

Exposes API’s to provide condition on where clause to calculate average.

– equalTo: required method

Used to specify EQUAL TO (=)condition.

- (id<SICIAverage>)equalTo:(id)value

Parameters

value

Value for which EQUAL TO (=)condition will be applied.

Return Value

SICIAverage Interface.

Discussion

Used to specify EQUAL TO (=)condition.

Declared In

SICIAverageClause.h

– notEqualTo: required method

Used to specify NOT EQUAL TO (!=)condition.

- (id<SICIAverage>)notEqualTo:(id)value

Parameters

value

Value for which NOT EQUAL TO (=)condition will be applied.

Return Value

SICIAverage Interface.

Discussion

Used to specify NOT EQUAL TO (!=)condition.

Declared In

SICIAverageClause.h

– greaterThan: required method

Used to specify GREATER THAN (>)condition.

- (id<SICIAverage>)greaterThan:(id)value

Parameters

value

Value for while GREATER THAN (>)condition will be specified.

Return Value

SICIAverage Interface.

Discussion

Used to specify GREATER THAN (>)condition.

Declared In

SICIAverageClause.h

– greaterThanEqual: required method

Used to specify GREATER THAN EQUAL (>=)condition.

- (id<SICIAverage>)greaterThanEqual:(id)value

Parameters

value

Value for which GREATER THAN EQUAL (>=)condition will be specified.

Return Value

SICIAverage Interface.

Discussion

Used to specify GREATER THAN EQUAL (>=)condition.

Declared In

SICIAverageClause.h

– lessThan: required method

Used to specify LESS THAN (<)condition.

- (id<SICIAverage>)lessThan:(id)value

Parameters

value

Value for which LESS THAN (<)condition will be specified.

Return Value

SICIAverage Interface.

Discussion

Used to specify LESS THAN (<)condition.

Declared In

SICIAverageClause.h

– lessThanEqual: required method

Used to specify LESS THAN EQUAL (<=)condition.

- (id<SICIAverage>)lessThanEqual:(id)value

Parameters

value

Value for which LESS THAN EQUAL (<=)condition will be specified.

Return Value

SICIAverage Interface.

Discussion

Used to specify LESS THAN EQUAL (<=)condition.

Declared In

SICIAverageClause.h

– between:end: required method

Used to specify BETWEEN condition.

- (id<SICIAverage>)between:(id)start end:(id)end

Parameters

start

Start Range.

end

End Range.

Return Value

SICIAverage Interface.

Discussion

Used to specify BETWEEN condition.

Declared In

SICIAverageClause.h

– like: required method

Used to specify LIKE condition.

- (id<SICIAverage>)like:(id)like

Parameters

like

LIKE condition.

Return Value

SICIAverage Interface.

Discussion

Used to specify LIKE condition.

Declared In

SICIAverageClause.h

– in: required method

Used to specify IN condition.

- (id<SICIAverage>)in:(id)values

Parameters

values

Values for IN condition.

Return Value

SICIAverage Interface.

Discussion

Used to specify IN condition.

Declared In

SICIAverageClause.h