Query.Util.removeFromList()

Signature

Object removeFromList(Object list, int index)

Domain

ACTION

Description

Removes the element at the given position in the list.

Parameters

NameTypeDescription
listjava.util.ListThe list from which the item at the position/index number will be removed.
indexintThe position number from which the item will be removed.

Returns

TypeDescription
Objectthe item that was removed.

Cautions

none