|
CoherenceTM v3.3 Copyright© 2000-2007 by Oracle Corporation |
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.tangosol.util.Base
com.tangosol.util.RestrictedCollections.RestrictedCollection
com.tangosol.util.RestrictedCollections.RestrictedList
public static class RestrictedCollections.RestrictedList
A restricted List that requires its contents to be of a specified class.
Field Summary |
---|
Fields inherited from class com.tangosol.util.RestrictedCollections.RestrictedCollection |
---|
m_clz, m_col |
Constructor Summary | |
---|---|
RestrictedCollections.RestrictedList(List list,
Class clz)
Constructor. |
Method Summary | |
---|---|
void |
add(int index,
Object element)
Inserts the specified element at the specified position in this list (optional operation). |
boolean |
addAll(int index,
Collection col)
Inserts all of the elements in the specified collection into this list at the specified position (optional operation). |
Object |
get(int index)
Returns the element at the specified position in this list. |
int |
indexOf(Object o)
Returns the index in this list of the first occurrence of the specified element, or -1 if this list does not contain this element. |
int |
lastIndexOf(Object o)
Returns the index in this list of the last occurrence of the specified element, or -1 if this list does not contain this element. |
ListIterator |
listIterator()
Returns a list iterator of the elements in this list (in proper sequence). |
ListIterator |
listIterator(int index)
Returns a list iterator of the elements in this list (in proper sequence), starting at the specified position in this list. |
Object |
remove(int index)
Removes the element at the specified position in this list (optional operation). |
Object |
set(int index,
Object element)
Replaces the element at the specified position in this list with the specified element (optional operation). |
List |
subList(int fromIndex,
int toIndex)
Returns a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive. |
Methods inherited from class com.tangosol.util.RestrictedCollections.RestrictedCollection |
---|
add, addAll, checkObject, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString |
Methods inherited from interface java.util.List |
---|
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray |
Constructor Detail |
---|
public RestrictedCollections.RestrictedList(List list, Class clz)
list
- the underlying Listclz
- the class of objects that may be stored in the
ListMethod Detail |
---|
public Object get(int index)
get
in interface List
index
- index of element to return
public Object set(int index, Object element)
set
in interface List
index
- index of element to replace.element
- element to be stored at the specified position.
ClassCastException
- if the class of the specified element
prevents it from being added to this listpublic void add(int index, Object element)
add
in interface List
index
- index at which the specified element is to be
insertedelement
- element to be inserted
ClassCastException
- if the class of the specified element
prevents it from being added to this listpublic boolean addAll(int index, Collection col)
addAll
in interface List
index
- index at which to insert first element from the
specified collectioncol
- elements to be inserted into this list
ClassCastException
- if the class of one of elements of the
specified collection prevents it from being added to this
listpublic Object remove(int index)
remove
in interface List
index
- the index of the element to removed
public int indexOf(Object o)
indexOf
in interface List
o
- element to search for
public int lastIndexOf(Object o)
lastIndexOf
in interface List
o
- element to search for
public ListIterator listIterator()
listIterator
in interface List
public ListIterator listIterator(int index)
listIterator
in interface List
index
- index of first element to be returned from the
list iterator (by a call to the next method)
public List subList(int fromIndex, int toIndex)
subList
in interface List
fromIndex
- low endpoint (inclusive) of the subListtoIndex
- high endpoint (exclusive) of the subList
|
CoherenceTM v3.3 Copyright© 2000-2007 by Oracle Corporation |
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |