List of Arraylist methods: Difference between revisions
Jump to navigation
Jump to search
m Automatically generated page update |
m Automatically generated page update |
||
| Line 8: | Line 8: | ||
<tr><td>[[Average (Arraylist function)|Average]]</td><td>Average the members of this ArrayList</td></tr> | <tr><td>[[Average (Arraylist function)|Average]]</td><td>Average the members of this ArrayList</td></tr> | ||
<tr><td>[[Copy (Arraylist function)|Copy]]</td><td>Copy the Arraylist</td></tr> | <tr><td>[[Copy (Arraylist function)|Copy]]</td><td>Copy the Arraylist</td></tr> | ||
<tr><td>[[Count (Arraylist | <tr><td>[[Count (Arraylist property)|Count]]</td><td>Number of items in Arraylist</td></tr> | ||
<tr><td>[[CountSubset (Arraylist function)|CountSubset]]</td><td>Number of items matching a criterion</td></tr> | <tr><td>[[CountSubset (Arraylist function)|CountSubset]]</td><td>Number of items matching a criterion</td></tr> | ||
<tr><td>[[DeepCopy (Arraylist function)|DeepCopy]]</td><td>Deep Copy the Arraylist</td></tr> | <tr><td>[[DeepCopy (Arraylist function)|DeepCopy]]</td><td>Deep Copy the Arraylist</td></tr> | ||
Revision as of 23:24, 19 January 2011
| Method | Description |
|---|---|
| Add | Add an Arraylist item |
| Audit | Audit Arraylist |
| Average | Average the members of this ArrayList |
| Copy | Copy the Arraylist |
| Count | Number of items in Arraylist |
| CountSubset | Number of items matching a criterion |
| DeepCopy | Deep Copy the Arraylist |
| Dequeue | Retrieve first Arraylist item, then remove item |
| Enqueue | Add item to end of Arraylist |
| FindNextItem | Find matching Arraylist item |
| FindNextItemNumber | Return number of matching item |
| FindPreviousItem | Find matching Arraylist item |
| FindPreviousItemNumber | Return number of matching item |
| FirstItem | Retrieve or set value of first Arraylist item |
| Insert | Insert item into Arraylist |
| Item | Return or set Arraylist item value |
| LastItem | Retrieve or set value of last Arraylist item |
| List | Construct and populate a new Arraylist |
| Maximum | Get number of maximum item |
| MaximumItem | Get item that has maximum value |
| Minimum | Get number of minimum item |
| MinimumItem | Get item that has minimum value |
| Pop | Retrieve last Arraylist item, then remove item |
| Print Arraylist | |
| Push | Append item to Arraylist |
| RemoveItem | Remove item from Arraylist |
| Sort | Sort the input Arraylist |
| SortNew | Return new sorted Arraylist |
| StandardDeviation | Compute the standard deviation of the items |
| SubsetNew | Return all matching Arraylist items |
| Sum | Compute the sum of the items |
| Trace | Trace Arraylist |
| Variance | Compute the variance of the items |