Search
BaseList(E).set Method
See Also
 






Replaces the element at the specified position in this list with the specified element.

Namespace: com.mindfusion.common
Package: com.mindfusion.common

 Syntax

Java  Copy Code

public E set (
    int index,
    E e
)

 Parameters

index

The 0-based index of the element to set.

e

The new element at the specified position.

 Return Value

Returns the element previously at the specified position.

 See Also