SICIMaxClause Protocol Reference

Conforms to NSObject
Declared in SICIMaxClause.h

Overview

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

– equalTo: required method

Used to specify EQUAL TO (=) condition.

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

Parameters

value

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

Return Value

SICIMax Interface.

Discussion

Used to specify EQUAL TO (=) condition.

Declared In

SICIMaxClause.h

– notEqualTo: required method

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

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

Parameters

value

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

Return Value

SICIMax Interface.

Discussion

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

Declared In

SICIMaxClause.h

– greaterThan: required method

Used to specify GREATER THAN (>)condition.

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

Parameters

value

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

Return Value

SICIMax Interface.

Discussion

Used to specify GREATER THAN (>)condition.

Declared In

SICIMaxClause.h

– greaterThanEqual: required method

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

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

Parameters

value

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

Return Value

SICIMax Interface.

Discussion

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

Declared In

SICIMaxClause.h

– lessThan: required method

Used to specify LESS THAN (<) condition.

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

Parameters

value

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

Return Value

SICIMax Interface.

Discussion

Used to specify LESS THAN (<) condition.

Declared In

SICIMaxClause.h

– lessThanEqual: required method

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

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

Parameters

value

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

Return Value

SICIMax Interface.

Discussion

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

Declared In

SICIMaxClause.h

– between:end: required method

Used to specify BETWEEN condition.

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

Parameters

start

Start Range.

end

End Range.

Return Value

SICIMax Interface.

Discussion

Used to specify BETWEEN condition.

Declared In

SICIMaxClause.h

– like: required method

Used to specify LIKE condition.

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

Parameters

like

LIKE condition.

Return Value

SICIMax Interface.

Discussion

Used to specify LIKE condition.

Declared In

SICIMaxClause.h

– in: required method

Used to specify IN condition.

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

Parameters

values

Values for IN condition.

Return Value

SICIMax Interface.

Discussion

Used to specify IN condition.

Declared In

SICIMaxClause.h