public class

Manifest

extends Object
implements DocumentWrapper List<E>
java.lang.Object
   ↳ com.priint.comet.metadata.Manifest

Summary

Public Constructors
Manifest(ManifestDocument manifestDocument)
Public Methods
void add(int index, File element)
boolean add(File file)
boolean addAll(int index, Collection<? extends File> c)
boolean addAll(Collection<? extends File> c)
void clear()
boolean contains(Object o)
boolean containsAll(Collection<?> c)
static <E> List<E> copyOf(Collection<? extends E> coll)
boolean equals(Object o)
void forEach(Consumer<? super File> action)
File get(int index)
Document getDocument()

Gets the owner document of this manifest

Gets the owner document (i.e.

int hashCode()
int indexOf(Object o)
boolean isEmpty()
Iterator<File> iterator()
int lastIndexOf(Object o)
ListIterator<File> listIterator(int index)
ListIterator<File> listIterator()
static <E> List<E> of(E e1, E e2, E e3)
static <E> List<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9)
static <E> List<E> of(E e1, E e2, E e3, E e4, E e5)
static <E> List<E> of(E e1, E e2, E e3, E e4, E e5, E e6)
static <E> List<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8)
static <E> List<E> of()
static <E> List<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10)
static <E> List<E> of(E e1, E e2)
static <E> List<E> of(E... elements)
static <E> List<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E e7)
static <E> List<E> of(E e1, E e2, E e3, E e4)
static <E> List<E> of(E e1)
Stream<File> parallelStream()
File remove(int index)
boolean remove(Object o)
boolean removeAll(Collection<?> c)
boolean removeIf(Predicate<? super File> filter)
void replaceAll(UnaryOperator<File> operator)
boolean retainAll(Collection<?> c)
File set(int index, File element)
int size()
void sort(Comparator<? super File> c)
Spliterator<File> spliterator()
Stream<File> stream()
List<File> subList(int fromIndex, int toIndex)
Object[] toArray()
<T> T[] toArray(IntFunction<T[]> generator)
<T> T[] toArray(T[] a)
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.priint.comet.metadata.DocumentWrapper
From interface java.lang.Iterable
From interface java.util.Collection
From interface java.util.List

Public Constructors

public Manifest (ManifestDocument manifestDocument)

Public Methods

public void add (int index, File element)

public boolean add (File file)

public boolean addAll (int index, Collection<? extends File> c)

public boolean addAll (Collection<? extends File> c)

public void clear ()

public boolean contains (Object o)

public boolean containsAll (Collection<?> c)

public static List<E> copyOf (Collection<? extends E> coll)

public boolean equals (Object o)

public void forEach (Consumer<? super File> action)

public File get (int index)

public Document getDocument ()

Gets the owner document of this manifest

Gets the owner document (i.e. general document information) of this manifest

Returns
  • owner document of this manifest

public int hashCode ()

public int indexOf (Object o)

public boolean isEmpty ()

public Iterator<File> iterator ()

public int lastIndexOf (Object o)

public ListIterator<File> listIterator (int index)

public ListIterator<File> listIterator ()

public static List<E> of (E e1, E e2, E e3)

public static List<E> of (E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9)

public static List<E> of (E e1, E e2, E e3, E e4, E e5)

public static List<E> of (E e1, E e2, E e3, E e4, E e5, E e6)

public static List<E> of (E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8)

public static List<E> of ()

public static List<E> of (E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10)

public static List<E> of (E e1, E e2)

public static List<E> of (E... elements)

public static List<E> of (E e1, E e2, E e3, E e4, E e5, E e6, E e7)

public static List<E> of (E e1, E e2, E e3, E e4)

public static List<E> of (E e1)

public Stream<File> parallelStream ()

public File remove (int index)

public boolean remove (Object o)

public boolean removeAll (Collection<?> c)

public boolean removeIf (Predicate<? super File> filter)

public void replaceAll (UnaryOperator<File> operator)

public boolean retainAll (Collection<?> c)

public File set (int index, File element)

public int size ()

public void sort (Comparator<? super File> c)

public Spliterator<File> spliterator ()

public Stream<File> stream ()

public List<File> subList (int fromIndex, int toIndex)

public Object[] toArray ()

public T[] toArray (IntFunction<T[]> generator)

public T[] toArray (T[] a)