|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.silverpeas.util.PaginationList<T>
T
- the type of the items in the list.public class PaginationList<T>
The pagination list is a decorator of a collection by adding it some methods used in the pagination. The pagination list defines a given page to a full collection of items.
Method Summary | ||
---|---|---|
void |
add(int index,
T element)
|
|
boolean |
add(T e)
|
|
boolean |
addAll(Collection<? extends T> c)
|
|
boolean |
addAll(int index,
Collection<? extends T> c)
|
|
void |
clear()
|
|
boolean |
contains(Object o)
|
|
boolean |
containsAll(Collection<?> c)
|
|
boolean |
equals(Object o)
|
|
static
|
from(Collection<T> aCollection)
Decorates the specified collection with pagination features. |
|
static
|
from(Collection<T> aCollection,
long maxItems)
Decorates the specified collection with pagination features. |
|
T |
get(int index)
|
|
int |
hashCode()
|
|
int |
indexOf(Object o)
|
|
boolean |
isEmpty()
|
|
Iterator<T> |
iterator()
|
|
int |
lastIndexOf(Object o)
|
|
ListIterator<T> |
listIterator()
|
|
ListIterator<T> |
listIterator(int index)
|
|
long |
maxSize()
Gets the maximum number of items the pagination contain. |
|
T |
remove(int index)
|
|
boolean |
remove(Object o)
|
|
boolean |
removeAll(Collection<?> c)
|
|
boolean |
retainAll(Collection<?> c)
|
|
T |
set(int index,
T element)
|
|
int |
size()
|
|
List<T> |
subList(int fromIndex,
int toIndex)
|
|
Object[] |
toArray()
|
|
|
toArray(T[] a)
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static final <T> PaginationList<T> from(Collection<T> aCollection)
T
- the type of the items in the collection.aCollection
- the collection to decorate.
PaginationList
instance.public static final <T> PaginationList<T> from(Collection<T> aCollection, long maxItems)
T
- the type of the items in the collection.aCollection
- the collection to decorate.maxItems
- the maximum number of items; that is the size of the pagination.
PaginationList
instance.public long maxSize()
public int size()
size
in interface Collection<T>
size
in interface List<T>
public boolean isEmpty()
isEmpty
in interface Collection<T>
isEmpty
in interface List<T>
public boolean contains(Object o)
contains
in interface Collection<T>
contains
in interface List<T>
public Iterator<T> iterator()
iterator
in interface Iterable<T>
iterator
in interface Collection<T>
iterator
in interface List<T>
public Object[] toArray()
toArray
in interface Collection<T>
toArray
in interface List<T>
public <T> T[] toArray(T[] a)
toArray
in interface Collection<T>
toArray
in interface List<T>
public boolean add(T e)
add
in interface Collection<T>
add
in interface List<T>
public boolean remove(Object o)
remove
in interface Collection<T>
remove
in interface List<T>
public boolean containsAll(Collection<?> c)
containsAll
in interface Collection<T>
containsAll
in interface List<T>
public boolean addAll(Collection<? extends T> c)
addAll
in interface Collection<T>
addAll
in interface List<T>
public boolean addAll(int index, Collection<? extends T> c)
addAll
in interface List<T>
public boolean removeAll(Collection<?> c)
removeAll
in interface Collection<T>
removeAll
in interface List<T>
public boolean retainAll(Collection<?> c)
retainAll
in interface Collection<T>
retainAll
in interface List<T>
public void clear()
clear
in interface Collection<T>
clear
in interface List<T>
public boolean equals(Object o)
equals
in interface Collection<T>
equals
in interface List<T>
equals
in class Object
public int hashCode()
hashCode
in interface Collection<T>
hashCode
in interface List<T>
hashCode
in class Object
public T get(int index)
get
in interface List<T>
public T set(int index, T element)
set
in interface List<T>
public void add(int index, T element)
add
in interface List<T>
public T remove(int index)
remove
in interface List<T>
public int indexOf(Object o)
indexOf
in interface List<T>
public int lastIndexOf(Object o)
lastIndexOf
in interface List<T>
public ListIterator<T> listIterator()
listIterator
in interface List<T>
public ListIterator<T> listIterator(int index)
listIterator
in interface List<T>
public List<T> subList(int fromIndex, int toIndex)
subList
in interface List<T>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |