Difference between revisions of "Template:Java API"
From LongJump Support Wiki
imported>Aeric |
imported>Aeric |
||
Line 34: | Line 34: | ||
... | ... | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<!--ACTIVATE THE CATEGORY BELOW | <!--ACTIVATE THE CATEGORY BELOW FOR MAIN "COLLECTION" PAGES (not for individual methods) | ||
<noinclude> | <noinclude> | ||
Latest revision as of 01:44, 3 December 2011
Description...
- Syntax
Result result = Functions.__apiName__(String objectName, String fields, String criteria); Result result = Functions.__apiName__(String objectName, String fields, String criteria [, Parameters params] ); Result result = Functions.__apiName__(String objectName, String fields, String criteria); Result result = Functions.__apiName__(String objectName, String fields, String criteria, String sortBy, String sortOrder, String sortBy2, String sortOrder2, int offset, int numberOfRows);
- Parameters
-
- objectName
- The object name or identifier
- fields
- A comma-separated list of names of the fields to retrieve
- criteria
- A filter expression that specifies records to select.
- params
- An optional Parameters object that contains additional parameters:
- param - ...
- Returns
- Result object
--or--
- An integer containing ...
- A string containing ...
- Throws
- Exception
- Example
- This example ....
...