类 AbstractPersistentCollection.ListIteratorProxy
- java.lang.Object
-
- org.hibernate.collection.internal.AbstractPersistentCollection.ListIteratorProxy
-
- 所有已实现的接口:
Iterator,ListIterator
protected final class AbstractPersistentCollection.ListIteratorProxy extends Object implements ListIterator
-
-
字段概要
字段 修饰符和类型 字段 说明 protected ListIteratoritr
-
构造器概要
构造器 构造器 说明 ListIteratorProxy(ListIterator itr)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidadd(Object o)booleanhasNext()booleanhasPrevious()Objectnext()intnextIndex()Objectprevious()intpreviousIndex()voidremove()voidset(Object o)-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 java.util.Iterator
forEachRemaining
-
-
-
-
字段详细资料
-
itr
protected final ListIterator itr
-
-
构造器详细资料
-
ListIteratorProxy
public ListIteratorProxy(ListIterator itr)
-
-
方法详细资料
-
add
public void add(Object o)
- 指定者:
add在接口中ListIterator
-
hasNext
public boolean hasNext()
- 指定者:
hasNext在接口中Iterator- 指定者:
hasNext在接口中ListIterator
-
hasPrevious
public boolean hasPrevious()
- 指定者:
hasPrevious在接口中ListIterator
-
next
public Object next()
- 指定者:
next在接口中Iterator- 指定者:
next在接口中ListIterator
-
nextIndex
public int nextIndex()
- 指定者:
nextIndex在接口中ListIterator
-
previous
public Object previous()
- 指定者:
previous在接口中ListIterator
-
previousIndex
public int previousIndex()
- 指定者:
previousIndex在接口中ListIterator
-
remove
public void remove()
- 指定者:
remove在接口中Iterator- 指定者:
remove在接口中ListIterator
-
set
public void set(Object o)
- 指定者:
set在接口中ListIterator
-
-