类 AbstractPersistentCollection.ListProxy
- java.lang.Object
-
- org.hibernate.collection.internal.AbstractPersistentCollection.ListProxy
-
- 所有已实现的接口:
Iterable,Collection,List
protected final class AbstractPersistentCollection.ListProxy extends Object implements List
-
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidadd(int index, Object value)booleanadd(Object o)booleanaddAll(int i, Collection c)booleanaddAll(Collection c)voidclear()booleancontains(Object o)booleancontainsAll(Collection c)Objectget(int i)intindexOf(Object o)booleanisEmpty()Iteratoriterator()intlastIndexOf(Object o)ListIteratorlistIterator()ListIteratorlistIterator(int i)Objectremove(int i)booleanremove(Object o)booleanremoveAll(Collection c)booleanretainAll(Collection c)Objectset(int i, Object o)intsize()ListsubList(int i, int j)Object[]toArray()Object[]toArray(Object[] array)-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 java.util.Collection
parallelStream, removeIf, stream, toArray
-
从接口继承的方法 java.util.List
equals, hashCode, replaceAll, sort, spliterator
-
-
-
-
字段详细资料
-
list
protected final List list
-
-
构造器详细资料
-
ListProxy
public ListProxy(List list)
-
-
方法详细资料
-
add
public boolean add(Object o)
- 指定者:
add在接口中Collection- 指定者:
add在接口中List
-
addAll
public boolean addAll(Collection c)
- 指定者:
addAll在接口中Collection- 指定者:
addAll在接口中List
-
addAll
public boolean addAll(int i, Collection c)
-
clear
public void clear()
- 指定者:
clear在接口中Collection- 指定者:
clear在接口中List
-
contains
public boolean contains(Object o)
- 指定者:
contains在接口中Collection- 指定者:
contains在接口中List
-
containsAll
public boolean containsAll(Collection c)
- 指定者:
containsAll在接口中Collection- 指定者:
containsAll在接口中List
-
isEmpty
public boolean isEmpty()
- 指定者:
isEmpty在接口中Collection- 指定者:
isEmpty在接口中List
-
iterator
public Iterator iterator()
-
lastIndexOf
public int lastIndexOf(Object o)
- 指定者:
lastIndexOf在接口中List
-
listIterator
public ListIterator listIterator()
- 指定者:
listIterator在接口中List
-
listIterator
public ListIterator listIterator(int i)
- 指定者:
listIterator在接口中List
-
remove
public boolean remove(Object o)
- 指定者:
remove在接口中Collection- 指定者:
remove在接口中List
-
removeAll
public boolean removeAll(Collection c)
- 指定者:
removeAll在接口中Collection- 指定者:
removeAll在接口中List
-
retainAll
public boolean retainAll(Collection c)
- 指定者:
retainAll在接口中Collection- 指定者:
retainAll在接口中List
-
size
public int size()
- 指定者:
size在接口中Collection- 指定者:
size在接口中List
-
toArray
public Object[] toArray()
- 指定者:
toArray在接口中Collection- 指定者:
toArray在接口中List
-
-