Uses of Interface
it.unimi.dsi.fastutil.bytes.ByteListIterator

Packages that use ByteListIterator
it.unimi.dsi.fastutil.bytes Provides type-specific classes for byte elements or keys. 
 

Uses of ByteListIterator in it.unimi.dsi.fastutil.bytes
 

Classes in it.unimi.dsi.fastutil.bytes that implement ByteListIterator
 class AbstractByteListIterator
          An abstract class facilitating the creation of type-specific list iterators.
static class ByteIterators.EmptyIterator
          A class returning no elements and a type-specific iterator interface.
static class ByteIterators.UnmodifiableListIterator
          An unmodifiable wrapper class for list iterators.
 

Fields in it.unimi.dsi.fastutil.bytes declared as ByteListIterator
protected  ByteListIterator ByteIterators.UnmodifiableListIterator.i
           
protected  ByteListIterator ByteBigListIterators.BigListIteratorListIterator.i
           
 

Methods in it.unimi.dsi.fastutil.bytes that return ByteListIterator
static ByteListIterator ByteIterators.asByteIterator(ListIterator i)
          Wraps a standard list iterator into a type-specific list iterator.
 ByteListIterator AbstractByteList.byteListIterator()
          Deprecated. 
 ByteListIterator ByteList.byteListIterator()
          Deprecated. As of fastutil 5, replaced by ByteList.listIterator().
 ByteListIterator ByteLists.EmptyList.byteListIterator()
          Deprecated. 
 ByteListIterator ByteLists.SynchronizedList.byteListIterator()
          Deprecated. 
 ByteListIterator ByteLists.UnmodifiableList.byteListIterator()
          Deprecated. 
 ByteListIterator AbstractByteList.byteListIterator(int index)
          Deprecated. 
 ByteListIterator ByteList.byteListIterator(int index)
          Deprecated. As of fastutil 5, replaced by ByteList.listIterator(int).
 ByteListIterator ByteLists.EmptyList.byteListIterator(int i)
          Deprecated. 
 ByteListIterator ByteLists.SynchronizedList.byteListIterator(int i)
          Deprecated. 
 ByteListIterator ByteLists.UnmodifiableList.byteListIterator(int i)
          Deprecated. 
static ByteListIterator ByteIterators.fromTo(byte from, byte to)
          Creates a type-specific list iterator over an interval.
 ByteListIterator ByteLinkedOpenHashSet.iterator()
           
 ByteListIterator AbstractByteList.iterator()
           
 ByteListIterator ByteSets.Singleton.iterator()
           
 ByteListIterator ByteList.iterator()
          Returns a type-specific iterator on the elements of this list (in proper sequence).
 ByteListIterator ByteLists.EmptyList.iterator()
           
 ByteListIterator ByteLists.Singleton.iterator()
           
 ByteListIterator ByteLists.SynchronizedList.iterator()
           
 ByteListIterator ByteLists.UnmodifiableList.iterator()
           
 ByteListIterator ByteLinkedOpenCustomHashSet.iterator()
           
 ByteListIterator ByteLinkedOpenHashSet.iterator(byte from)
          Returns a type-specific list iterator on the elements in this set, starting from a given element of the set.
 ByteListIterator ByteLinkedOpenCustomHashSet.iterator(byte from)
          Returns a type-specific list iterator on the elements in this set, starting from a given element of the set.
 ByteListIterator AbstractByteList.listIterator()
           
 ByteListIterator ByteList.listIterator()
          Returns a type-specific list iterator on the list.
 ByteListIterator ByteLists.EmptyList.listIterator()
           
 ByteListIterator ByteLists.Singleton.listIterator()
           
 ByteListIterator ByteLists.SynchronizedList.listIterator()
           
 ByteListIterator ByteLists.UnmodifiableList.listIterator()
           
 ByteListIterator AbstractByteList.listIterator(int index)
           
 ByteListIterator AbstractByteList.ByteSubList.listIterator(int index)
           
 ByteListIterator ByteList.listIterator(int index)
          Returns a type-specific list iterator on the list starting at a given index.
 ByteListIterator ByteLists.EmptyList.listIterator(int i)
           
 ByteListIterator ByteLists.Singleton.listIterator(int i)
           
 ByteListIterator ByteLists.SynchronizedList.listIterator(int i)
           
 ByteListIterator ByteLists.UnmodifiableList.listIterator(int i)
           
 ByteListIterator ByteArrayList.listIterator(int index)
           
static ByteListIterator ByteIterators.singleton(byte element)
          Returns an iterator that iterates just over the given element.
static ByteListIterator ByteIterators.unmodifiable(ByteListIterator i)
          Returns an unmodifiable list iterator backed by the specified list iterator.
static ByteListIterator ByteIterators.wrap(byte[] array)
          Wraps the given array into a type-specific list iterator.
static ByteListIterator ByteIterators.wrap(byte[] array, int offset, int length)
          Wraps the given part of an array into a type-specific list iterator.
 

Methods in it.unimi.dsi.fastutil.bytes with parameters of type ByteListIterator
static ByteBigListIterator ByteBigListIterators.asBigListIterator(ByteListIterator i)
          Returns a big-list iterator backed by the specified list iterator.
static ByteListIterator ByteIterators.unmodifiable(ByteListIterator i)
          Returns an unmodifiable list iterator backed by the specified list iterator.
 

Constructors in it.unimi.dsi.fastutil.bytes with parameters of type ByteListIterator
ByteBigListIterators.BigListIteratorListIterator(ByteListIterator i)
           
ByteIterators.UnmodifiableListIterator(ByteListIterator i)
           
 



Copyright © 2011. All Rights Reserved.