Package com.pdftools.image
Class DocumentList
- java.lang.Object
-
- com.pdftools.internal.NativeBase
-
- com.pdftools.internal.NativeObject
-
- com.pdftools.image.DocumentList
-
- All Implemented Interfaces:
java.lang.Iterable<Document>
,java.util.Collection<Document>
,java.util.List<Document>
public class DocumentList extends NativeObject implements java.util.List<Document>
List of image documents
-
-
Constructor Summary
Constructors Constructor Description DocumentList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(int index, Document element)
Not supported.boolean
add(Document element)
boolean
addAll(int index, java.util.Collection<? extends Document> elements)
boolean
addAll(java.util.Collection<? extends Document> elements)
void
clear()
Not supported.boolean
contains(java.lang.Object object)
boolean
containsAll(java.util.Collection<?> objects)
Document
get(int index)
int
indexOf(java.lang.Object obj)
boolean
isEmpty()
java.util.Iterator<Document>
iterator()
int
lastIndexOf(java.lang.Object obj)
java.util.ListIterator<Document>
listIterator()
java.util.ListIterator<Document>
listIterator(int index)
Document
remove(int index)
Not supported.boolean
remove(java.lang.Object object)
Not supported.boolean
removeAll(java.util.Collection<?> objects)
Not supported.boolean
retainAll(java.util.Collection<?> objects)
Not supported.Document
set(int index, Document element)
Not supported.int
size()
java.util.List<Document>
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 Document> elements)
-
addAll
public boolean addAll(int index, java.util.Collection<? extends Document> elements)
- Specified by:
addAll
in interfacejava.util.List<Document>
-
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<Document> iterator()
-
listIterator
public java.util.ListIterator<Document> listIterator()
- Specified by:
listIterator
in interfacejava.util.List<Document>
-
listIterator
public java.util.ListIterator<Document> listIterator(int index)
- Specified by:
listIterator
in interfacejava.util.List<Document>
-
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<Document> subList(int fromIndex, int toIndex)
- Specified by:
subList
in interfacejava.util.List<Document>
-
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:
indexOf
in interfacejava.util.List<Document>
-
lastIndexOf
public int lastIndexOf(java.lang.Object obj)
- Specified by:
lastIndexOf
in interfacejava.util.List<Document>
-
add
public boolean add(Document element)
-
add
public void add(int index, Document element)
Not supported.- Specified by:
add
in interfacejava.util.List<Document>
-
remove
public Document remove(int index)
Not supported.- Specified by:
remove
in interfacejava.util.List<Document>
-
-