java.lang.Object
io.qt.QtObject
io.qt.core.QSequentialConstIterator<T>
- Type Parameters:
T
- value type
- All Implemented Interfaces:
QtObjectInterface
,Iterable<T>
- Direct Known Subclasses:
QSequentialIterator
Java-iterable wrapper for Qt's constant iterator types:
- QList<T>::const_iterator
- QSet<T>::const_iterator
- and all other sequential constant iterators
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturns a descending Java iterator between this and the container's end.boolean
Compares this iterator with other object.final int
hashCode()
iterator()
Returns a Java iterator between this and the container's end.final String
toString()
value()
Returns the value at iterator's position in the container or emptiness in case ofend
.final QMetaType
Returns the value type of the iterator.Methods inherited from class io.qt.QtObject
dispose, isDisposed
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
equals
Compares this iterator with other object.- Parameters:
other
- other object- Returns:
- true if the native counterpart of the two objects are one and the same.
-
iterator
Returns a Java iterator between this and the container's end. -
descendingIterator
Returns a descending Java iterator between this and the container's end. -
value
Returns the value at iterator's position in the container or emptiness in case ofend
. -
valueType
Returns the value type of the iterator. -
hashCode
-
toString
-