SICITotalClause Protocol Reference
Conforms to | NSObject |
---|---|
Declared in | SICITotalClause.h |
– equalTo:
required method
Used to specify EQUAL TO (=) condition.
- (id<SICITotal>)equalTo:(id)value
Parameters
value |
Value for which EQUAL TO (=) condition will be applied. |
---|
Return Value
SICITotal Interface.
Discussion
Used to specify EQUAL TO (=) condition.
Declared In
SICITotalClause.h
– notEqualTo:
required method
Used to specify NOT EQUAL TO (!=) condition.
- (id<SICITotal>)notEqualTo:(id)value
Parameters
value |
Value for which NOT EQUAL TO (=) condition will be applied. |
---|
Return Value
SICITotal Interface.
Discussion
Used to specify NOT EQUAL TO (!=) condition.
Declared In
SICITotalClause.h
– greaterThan:
required method
Used to specify GREATER THAN (>)condition.
- (id<SICITotal>)greaterThan:(id)value
Parameters
value |
Value for while GREATER THAN (>)condition will be specified. |
---|
Return Value
SICITotal Interface.
Discussion
Used to specify GREATER THAN (>)condition.
Declared In
SICITotalClause.h
– greaterThanEqual:
required method
Used to specify GREATER THAN EQUAL (>=) condition.
- (id<SICITotal>)greaterThanEqual:(id)value
Parameters
value |
Value for which GREATER THAN EQUAL (>=) condition will be specified. |
---|
Return Value
SICITotal Interface.
Discussion
Used to specify GREATER THAN EQUAL (>=) condition.
Declared In
SICITotalClause.h
– lessThan:
required method
Used to specify LESS THAN (<) condition.
- (id<SICITotal>)lessThan:(id)value
Parameters
value |
Value for which LESS THAN (<) condition will be specified. |
---|
Return Value
SICITotal Interface.
Discussion
Used to specify LESS THAN (<) condition.
Declared In
SICITotalClause.h
– lessThanEqual:
required method
Used to specify LESS THAN EQUAL (<=) condition.
- (id<SICITotal>)lessThanEqual:(id)value
Parameters
value |
Value for which LESS THAN EQUAL (<=) condition will be specified. |
---|
Return Value
SICITotal Interface.
Discussion
Used to specify LESS THAN EQUAL (<=) condition.
Declared In
SICITotalClause.h
– between:end:
required method
Used to specify BETWEEN condition.
- (id<SICITotal>)between:(id)start end:(id)end
Parameters
start |
Start Range. |
---|---|
end |
End Range. |
Return Value
SICITotal Interface.
Discussion
Used to specify BETWEEN condition.
Declared In
SICITotalClause.h