public class OutlineValueCollection extends AbstractList<OutlineValue>
Represents a collection of OutlineValue
objects.
Modifier and Type | Method and Description |
---|---|
boolean |
add(OutlineValue item)
Adds the specified item to this collection.
|
OutlineValue |
get(int index)
Returns the element at the specified position in this collection.
|
Iterator<OutlineValue> |
iterator()
Returns an iterator over elements from this collection.
|
OutlineValue |
remove(int index)
Removes the element at the specified position in this collection and returns the element that was removed from
the collection.
|
int |
size()
Gets the number of elements contained in this collection.
|
add, addAll, clear, equals, hashCode, indexOf, lastIndexOf, listIterator, listIterator, set, subList
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
addAll, contains, containsAll, isEmpty, remove, removeAll, replaceAll, retainAll, sort, spliterator, toArray, toArray
parallelStream, removeIf, stream
public final boolean add(OutlineValue item)
Adds the specified item to this collection.
add
in interface Collection<OutlineValue>
add
in interface List<OutlineValue>
add
in class AbstractList<OutlineValue>
item
- the specified item to add to this collection.public final OutlineValue get(int index)
get
in interface List<OutlineValue>
get
in class AbstractList<OutlineValue>
index
- specified position to getInternal element at.public Iterator<OutlineValue> iterator()
iterator
in interface Iterable<OutlineValue>
iterator
in interface Collection<OutlineValue>
iterator
in interface List<OutlineValue>
iterator
in class AbstractList<OutlineValue>
public final OutlineValue remove(int index)
remove
in interface List<OutlineValue>
remove
in class AbstractList<OutlineValue>
index
- the specified position to remove the element at.public final int size()
Gets the number of elements contained in this collection.
size
in interface Collection<OutlineValue>
size
in interface List<OutlineValue>
size
in class AbstractCollection<OutlineValue>
Copyright (c) 2008-2019 Aspose Pty Ltd. All Rights Reserved.