Package com.pdftools.image
Class PageList
- java.lang.Object
-
- com.pdftools.internal.NativeBase
-
- com.pdftools.internal.NativeObject
-
- com.pdftools.image.PageList
-
- All Implemented Interfaces:
java.lang.Iterable<Page>,java.util.Collection<Page>,java.util.List<Page>
public class PageList extends NativeObject implements java.util.List<Page>
The list of image pages
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(int index, Page element)Not supported.booleanadd(Page element)Not supported.booleanaddAll(int index, java.util.Collection<? extends Page> elements)Not supported.booleanaddAll(java.util.Collection<? extends Page> elements)Not supported.voidclear()Not supported.booleancontains(java.lang.Object object)booleancontainsAll(java.util.Collection<?> objects)Pageget(int index)intindexOf(java.lang.Object obj)booleanisEmpty()java.util.Iterator<Page>iterator()intlastIndexOf(java.lang.Object obj)java.util.ListIterator<Page>listIterator()java.util.ListIterator<Page>listIterator(int index)Pageremove(int index)Not supported.booleanremove(java.lang.Object object)Not supported.booleanremoveAll(java.util.Collection<?> objects)Not supported.booleanretainAll(java.util.Collection<?> objects)Not supported.Pageset(int index, Page element)Not supported.intsize()java.util.List<Page>subList(int fromIndex, int toIndex)java.lang.Object[]toArray()<T> T[]toArray(T[] array)-
Methods inherited from class com.pdftools.internal.NativeObject
equals, hashCode
-
-
-
-
Method Detail
-
addAll
public boolean addAll(java.util.Collection<? extends Page> elements)
Not supported.
-
addAll
public boolean addAll(int index, java.util.Collection<? extends Page> elements)Not supported.- Specified by:
addAllin interfacejava.util.List<Page>
-
contains
public boolean contains(java.lang.Object object)
-
containsAll
public boolean containsAll(java.util.Collection<?> objects)
-
isEmpty
public boolean isEmpty()
-
iterator
public java.util.Iterator<Page> iterator()
-
listIterator
public java.util.ListIterator<Page> listIterator()
- Specified by:
listIteratorin interfacejava.util.List<Page>
-
listIterator
public java.util.ListIterator<Page> listIterator(int index)
- Specified by:
listIteratorin interfacejava.util.List<Page>
-
remove
public boolean remove(java.lang.Object object)
Not supported.
-
removeAll
public boolean removeAll(java.util.Collection<?> objects)
Not supported.
-
retainAll
public boolean retainAll(java.util.Collection<?> objects)
Not supported.
-
subList
public java.util.List<Page> subList(int fromIndex, int toIndex)
- Specified by:
subListin interfacejava.util.List<Page>
-
toArray
public java.lang.Object[] toArray()
-
toArray
public <T> T[] toArray(T[] array)
-
size
public int size()
-
clear
public void clear()
Not supported.
-
indexOf
public int indexOf(java.lang.Object obj)
- Specified by:
indexOfin interfacejava.util.List<Page>
-
lastIndexOf
public int lastIndexOf(java.lang.Object obj)
- Specified by:
lastIndexOfin interfacejava.util.List<Page>
-
add
public boolean add(Page element)
Not supported.
-
add
public void add(int index, Page element)Not supported.- Specified by:
addin interfacejava.util.List<Page>
-
remove
public Page remove(int index)
Not supported.- Specified by:
removein interfacejava.util.List<Page>
-
-