List of GenericNamedArraylist methods: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Automatically generated page update)
m (Automatically generated page update)
 
(2 intermediate revisions by 2 users not shown)
Line 15: Line 15:
<tr><td valign="top">[[FindPreviousItem (GenericNamedArraylist function)|FindPreviousItem]]</td><td valign="top">Previous item that matches some selection criteria</td></tr>
<tr><td valign="top">[[FindPreviousItem (GenericNamedArraylist function)|FindPreviousItem]]</td><td valign="top">Previous item that matches some selection criteria</td></tr>
<tr><td valign="top">[[FindPreviousItemNumber (GenericNamedArraylist function)|FindPreviousItemNumber]]</td><td valign="top">Item number of previous item that matches some selection criteria</td></tr>
<tr><td valign="top">[[FindPreviousItemNumber (GenericNamedArraylist function)|FindPreviousItemNumber]]</td><td valign="top">Item number of previous item that matches some selection criteria</td></tr>
<tr><td valign="top">[[FirstItem (GenericNamedArraylist property)|FirstItem]]</td><td valign="top">Return or set first item</td></tr>
<tr><td valign="top">[[ItemByNumber (GenericNamedArraylist property)|ItemByNumber]]</td><td valign="top">Return or set item using item number</td></tr>
<tr><td valign="top">[[ItemByNumber (GenericNamedArraylist property)|ItemByNumber]]</td><td valign="top">Return or set item using item number</td></tr>
<tr><td valign="top">[[LastItem (GenericNamedArraylist property)|LastItem]]</td><td valign="top">Return or set last item</td></tr>
<tr><td valign="top">[[MaximumItem (GenericNamedArraylist function)|MaximumItem]]</td><td valign="top">Item with maximum value or maximum value of function applied to items</td></tr>
<tr><td valign="top">[[MaximumItem (GenericNamedArraylist function)|MaximumItem]]</td><td valign="top">Item with maximum value or maximum value of function applied to items</td></tr>
<tr><td valign="top">[[MinimumItem (GenericNamedArraylist function)|MinimumItem]]</td><td valign="top">Item with minimum value or minimum value of function applied to items</td></tr>
<tr><td valign="top">[[MinimumItem (GenericNamedArraylist function)|MinimumItem]]</td><td valign="top">Item with minimum value or minimum value of function applied to items</td></tr>
<tr><td valign="top">[[New (GenericNamedArraylist constructor)|New]]</td><td valign="top">Create a new GenericNamedArraylist object</td></tr>
<tr><td valign="top">[[Print (GenericNamedArraylist subroutine)|Print]]</td><td valign="top">Print items</td></tr>
<tr><td valign="top">[[Print (GenericNamedArraylist subroutine)|Print]]</td><td valign="top">Print items</td></tr>
<tr><td valign="top">[[SortNew (GenericNamedArraylist function)|SortNew]]</td><td valign="top">Sort items to an Arraylist</td></tr>
<tr><td valign="top">[[SortNew (GenericNamedArraylist function)|SortNew]]</td><td valign="top">Sort items to an Arraylist</td></tr>
Line 51: Line 52:
</tr>
</tr>
</table>
</table>
[[Category:Lists of methods]]

Latest revision as of 16:44, 8 December 2012

The following are the available GenericNamedArraylist class methods.

MethodDescription
AuditAudit items
AverageCalculate average of items or function of items
CountNumber of items
CountSubsetNumber of items that match some selection criteria
DefaultValue for Item to return when Name has no value
FindNextItemNext item that matches some selection criteria
FindNextItemNumberItem number of next item that matches some selection criteria
FindPreviousItemPrevious item that matches some selection criteria
FindPreviousItemNumberItem number of previous item that matches some selection criteria
FirstItemReturn or set first item
ItemByNumberReturn or set item using item number
LastItemReturn or set last item
MaximumItemItem with maximum value or maximum value of function applied to items
MinimumItemItem with minimum value or minimum value of function applied to items
PrintPrint items
SortNewSort items to an Arraylist
StandardDeviationCalculate standard deviation of items or function of items
SumCalculate sum of items or function of items
TraceTrace items
UseDefaultFlag indicating whether or not Item returns the Default value when name has no value
VarianceCalculate variance of items or function of items

See also