- All Known Implementing Classes:
AbstractSVGPointList
,SVGOMAnimatedPoints.AnimSVGPointList
,SVGOMAnimatedPoints.BaseSVGPointList
SVGPoint
objects.-
Method Summary
Modifier and TypeMethodDescriptionappendItem
(SVGPoint newItem) Inserts a new item at the end of the list.void
clear()
Clears all existing current items from the list, with the result being an empty list.getItem
(int index) Get the specified item from the list.int
The number of items in the list.initialize
(SVGPoint newItem) Clear this list and add the given value to it.insertItemBefore
(SVGPoint newItem, int index) Inserts a new item into the list at the specified position.removeItem
(int index) Removes an existing item from the list.replaceItem
(SVGPoint newItem, int index) Replaces an existing item in the list with a new item.
-
Method Details
-
getNumberOfItems
int getNumberOfItems()The number of items in the list.- Returns:
- The number of items.
-
clear
Clears all existing current items from the list, with the result being an empty list.- Throws:
DOMException
- NO_MODIFICATION_ALLOWED_ERR if this list is read only.
-
initialize
Clear this list and add the given value to it.- Parameters:
newItem
- the value.- Returns:
- the value.
- Throws:
DOMException
- NO_MODIFICATION_ALLOWED_ERR if this list is read only.SVGException
-
getItem
Get the specified item from the list.- Parameters:
index
- The index of the item from the list which is to be returned. The first item is number 0.- Returns:
- the specified item from the list.
- Throws:
DOMException
- INDEX_SIZE_ERR if the index number is greater than or equal to numberOfItems.
-
insertItemBefore
Inserts a new item into the list at the specified position.The first item is number 0. If newItem is already in a list, it is removed from its previous list before it is inserted into this list. The inserted item is the item itself and not a copy. If the item is already in this list, note that the index of the item to insert before is before the removal of the item.
- Parameters:
newItem
- The item which is to be inserted into the list.index
- The index of the item before which the new item is to be inserted. The first item is number 0. If the index is equal to 0, then the new item is inserted at the front of the list. If the index is greater than or equal to numberOfItems, then the new item is appended to the end of the list.- Returns:
- The inserted item.
- Throws:
DOMException
- NO_MODIFICATION_ALLOWED_ERR if this list is read only.SVGException
-
replaceItem
Replaces an existing item in the list with a new item.If newItem is already in a list, it is removed from its previous list before it is inserted into this list. The inserted item is the item itself and not a copy. If the item is already in this list, note that the index of the item to replace is before the removal of the item.
- Parameters:
newItem
- The item which is to be inserted into the list.index
- The index of the item which is to be replaced. The first item is number 0.- Returns:
- The inserted item.
- Throws:
DOMException
- NO_MODIFICATION_ALLOWED_ERR if this list is read only, INDEX_SIZE_ERR if the index number is greater than or equal to numberOfItems.SVGException
-
removeItem
Removes an existing item from the list.- Parameters:
index
- The index of the item which is to be removed. The first item is number 0.- Returns:
- The removed item.
- Throws:
DOMException
- NO_MODIFICATION_ALLOWED_ERR if this list is read only, INDEX_SIZE_ERR if the index number is greater than or equal to numberOfItems.
-
appendItem
Inserts a new item at the end of the list.If newItem is already in a list, it is removed from its previous list before it is inserted into this list. The inserted item is the item itself and not a copy.
- Parameters:
newItem
- The item which is to be appended.- Returns:
- the new item.
- Throws:
DOMException
- NO_MODIFICATION_ALLOWED_ERR if this list is read only.SVGException
-