Méthode | Description | |
---|---|---|
Add ( System valueToInsert ) : bool |
Adds an object to the end of the List.
|
|
AddAll ( CollectionSupport collection ) : bool |
Adds all the elements contained in the specified support class collection.
|
|
AddAll ( System collection ) : bool |
Adds all the elements contained in the specified collection.
|
|
AddAll ( int index, CollectionSupport collection ) : bool |
Adds all the elements contained into the specified support class collection, starting at the specified position.
|
|
AddAll ( int index, System list ) : bool |
Adds all the elements contained into the specified collection, starting at the specified position.
|
|
ContainsAll ( CollectionSupport collection ) : bool |
Verifies if all the elements of the specified collection are contained into the current collection.
|
|
ContainsAll ( System collection ) : bool |
Verifies if all the elements of the specified collection are contained into the current collection.
|
|
Get ( int index ) : |
Returns the element at the specified position in the list.
|
|
GetLast ( ) : |
Gets the last value from a list.
|
|
IsEmpty ( ) : bool |
Return whether this list is empty.
|
|
ListCollectionClone ( ) : |
Creates a copy of the ListCollectionSupport.
|
|
ListCollectionSupport ( ) : System |
Creates a new instance of the class ListCollectionSupport.
|
|
ListCollectionSupport ( System collection ) : System |
Creates a new instance of the class ListCollectionSupport.
|
|
ListCollectionSupport ( int capacity ) : System |
Creates a new instance of the class ListCollectionSupport with the specified capacity.
|
|
ListIterator ( ) : System.Collections.IEnumerator |
Returns an iterator of the collection.
|
|
ListIterator ( int index ) : System.Collections.IEnumerator |
Returns an iterator of the collection starting at the specified position.
|
|
RemoveAll ( CollectionSupport collection ) : bool |
Removes all the elements contained into the specified collection.
|
|
RemoveAll ( System collection ) : bool |
Removes all the elements contained into the specified collection.
|
|
RemoveElement ( int index ) : |
Removes the value in the specified index from the list.
|
|
RemoveElement ( System element ) : bool |
Removes an specified element from the collection.
|
|
RemoveFirst ( ) : |
Removes the first value from an array list.
|
|
RemoveLast ( ) : |
Removes the last value from an array list.
|
|
RetainAll ( CollectionSupport collection ) : bool |
Removes all the elements that aren't contained into the specified collection.
|
|
RetainAll ( System collection ) : bool |
Removes all the elements that aren't contained into the specified collection.
|
|
Set ( int index, System element ) : |
Replaces the element at the specified position in this list with the specified element.
|
|
SubList ( int startIndex, int endIndex ) : ListCollectionSupport |
Returns a new list containing a portion of the current list between a specified range.
|
|
ToArray ( System objects ) : System.Object[] |
Obtains an array containing all the elements of the collection.
|
public Add ( System valueToInsert ) : bool | ||
valueToInsert | System | The value to insert in the array list. |
Résultat | bool |
public AddAll ( CollectionSupport collection ) : bool | ||
collection | CollectionSupport | The collection used to extract the elements that will be added. |
Résultat | bool |
public AddAll ( System collection ) : bool | ||
collection | System | The collection used to extract the elements that will be added. |
Résultat | bool |
public AddAll ( int index, CollectionSupport collection ) : bool | ||
index | int | Position at which to add the first element from the specified collection. |
collection | CollectionSupport | |
Résultat | bool |
public AddAll ( int index, System list ) : bool | ||
index | int | Position at which to add the first element from the specified collection. |
list | System | The list used to extract the elements that will be added. |
Résultat | bool |
public ContainsAll ( CollectionSupport collection ) : bool | ||
collection | CollectionSupport | The collection used to extract the elements that will be verified. |
Résultat | bool |
public ContainsAll ( System collection ) : bool | ||
collection | System | The collection used to extract the elements that will be verified. |
Résultat | bool |
public Get ( int index ) : |
||
index | int | Index of element to return. |
Résultat |
public ListCollectionSupport ( System collection ) : System | ||
collection | System | The collection to insert into the new object. |
Résultat | System |
public ListCollectionSupport ( int capacity ) : System | ||
capacity | int | The capacity of the new array. |
Résultat | System |
public ListIterator ( ) : System.Collections.IEnumerator | ||
Résultat | System.Collections.IEnumerator |
public ListIterator ( int index ) : System.Collections.IEnumerator | ||
index | int | The position to set the iterator. |
Résultat | System.Collections.IEnumerator |
public RemoveAll ( CollectionSupport collection ) : bool | ||
collection | CollectionSupport | The collection used to extract the elements that will be removed. |
Résultat | bool |
public RemoveAll ( System collection ) : bool | ||
collection | System | The collection used to extract the elements that will be removed. |
Résultat | bool |
public RemoveElement ( int index ) : |
||
index | int | The index of the value to remove. |
Résultat |
public RemoveElement ( System element ) : bool | ||
element | System | The element to be removed. |
Résultat | bool |
public RetainAll ( CollectionSupport collection ) : bool | ||
collection | CollectionSupport | The collection used to verify the elements that will be retained. |
Résultat | bool |
public RetainAll ( System collection ) : bool | ||
collection | System | The collection used to verify the elements that will be retained. |
Résultat | bool |
public Set ( int index, System element ) : |
||
index | int | Index of element to replace. |
element | System | Element to be stored at the specified position. |
Résultat |
public SubList ( int startIndex, int endIndex ) : ListCollectionSupport | ||
startIndex | int | The start index of the range. |
endIndex | int | The end index of the range. |
Résultat | ListCollectionSupport |
public ToArray ( System objects ) : System.Object[] | ||
objects | System | The array into which the elements of the collection will be stored. |
Résultat | System.Object[] |