public class

Spreads

extends Object
implements List<E>
java.lang.Object
   ↳ com.priint.comet.metadata.spread.Spreads

Summary

Public Constructors
Spreads(SpreadDocument spreadDocument)
Public Methods
void add(int i, Spread spread)
boolean add(Spread spread)
boolean addAll(int i, Collection<? extends Spread> collection)
boolean addAll(Collection<? extends Spread> collection)
void clear()
boolean contains(Object o)
boolean containsAll(Collection<?> collection)
static <E> List<E> copyOf(Collection<? extends E> coll)
boolean equals(Object o)
void forEach(Consumer<? super Spread> action)
Spread get(int i)
BaselineGrid getBaselineGrid()
Document getDocument()

Gets the owner document of this spread list

Gets the owner document (i.e.

Grid getGrid()
List<ParentSpread> getParentSpreads()
Dimensions getSpreadDimension(int spreadIndex)
List<Page> getSpreadPages(int spreadIndex)
int hashCode()
int indexOf(Object o)
boolean isEmpty()
Iterator<Spread> iterator()
int lastIndexOf(Object o)
ListIterator<Spread> listIterator(int i)
ListIterator<Spread> listIterator()
static <E> List<E> of(E e1, E e2, E e3, E e4, E e5)
static <E> List<E> of()
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)
static <E> List<E> of(E e1)
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, 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(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, E e3, E e4, E e5, E e6, E e7)
Stream<Spread> parallelStream()
boolean remove(Object o)
Spread remove(int i)
boolean removeAll(Collection<?> collection)
boolean removeIf(Predicate<? super Spread> filter)
void replaceAll(UnaryOperator<Spread> operator)
boolean retainAll(Collection<?> collection)
Spread set(int i, Spread spread)
int size()
void sort(Comparator<? super Spread> c)
Spliterator<Spread> spliterator()
Stream<Spread> stream()
List<Spread> subList(int i, int i1)
Object[] toArray()
<T> T[] toArray(IntFunction<T[]> generator)
<T> T[] toArray(T[] ts)
[Expand]
Inherited Methods
From class java.lang.Object
From interface java.lang.Iterable
From interface java.util.Collection
From interface java.util.List

Public Constructors

public Spreads (SpreadDocument spreadDocument)

Public Methods

public void add (int i, Spread spread)

public boolean add (Spread spread)

public boolean addAll (int i, Collection<? extends Spread> collection)

public boolean addAll (Collection<? extends Spread> collection)

public void clear ()

public boolean contains (Object o)

public boolean containsAll (Collection<?> collection)

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

public boolean equals (Object o)

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

public Spread get (int i)

public BaselineGrid getBaselineGrid ()

public Document getDocument ()

Gets the owner document of this spread list

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

Returns
  • owner document of this spread list

public Grid getGrid ()

public List<ParentSpread> getParentSpreads ()

public Dimensions getSpreadDimension (int spreadIndex)

public List<Page> getSpreadPages (int spreadIndex)

public int hashCode ()

public int indexOf (Object o)

public boolean isEmpty ()

public Iterator<Spread> iterator ()

public int lastIndexOf (Object o)

public ListIterator<Spread> listIterator (int i)

public ListIterator<Spread> listIterator ()

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

public static List<E> of ()

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)

public static List<E> of (E e1)

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, 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 (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, E e3, E e4, E e5, E e6, E e7)

public Stream<Spread> parallelStream ()

public boolean remove (Object o)

public Spread remove (int i)

public boolean removeAll (Collection<?> collection)

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

public void replaceAll (UnaryOperator<Spread> operator)

public boolean retainAll (Collection<?> collection)

public Spread set (int i, Spread spread)

public int size ()

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

public Spliterator<Spread> spliterator ()

public Stream<Spread> stream ()

public List<Spread> subList (int i, int i1)

public Object[] toArray ()

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

public T[] toArray (T[] ts)