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

Packages that use ByteIterator
it.unimi.dsi.fastutil.bytes Provides type-specific classes for byte elements or keys. 
it.unimi.dsi.fastutil.chars Provides type-specific classes for character elements or keys. 
it.unimi.dsi.fastutil.doubles Provides type-specific classes for double elements or keys. 
it.unimi.dsi.fastutil.floats Provides type-specific classes for float elements or keys. 
it.unimi.dsi.fastutil.ints Provides type-specific classes for integer elements or keys. 
it.unimi.dsi.fastutil.io Provides classes and static methods that make object and primitive-type I/O easier and faster. 
it.unimi.dsi.fastutil.longs Provides type-specific classes for long elements or keys. 
it.unimi.dsi.fastutil.objects Provides type-specific classes for object elements or keys. 
it.unimi.dsi.fastutil.shorts Provides type-specific classes for short elements or keys. 
 

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

Subinterfaces of ByteIterator in it.unimi.dsi.fastutil.bytes
 interface ByteBidirectionalIterator
          A type-specific bidirectional iterator; provides an additional method to avoid (un)boxing, and the possibility to skip elements backwards.
 interface ByteBigListIterator
          A type-specific BigListIterator.
 interface ByteListIterator
          A type-specific bidirectional iterator that is also a ListIterator.
 

Classes in it.unimi.dsi.fastutil.bytes that implement ByteIterator
protected static class AbstractByte2BooleanSortedMap.KeySetIterator
          A wrapper exhibiting a map iterator as an iterator on keys.
protected static class AbstractByte2ByteSortedMap.KeySetIterator
          A wrapper exhibiting a map iterator as an iterator on keys.
protected static class AbstractByte2ByteSortedMap.ValuesIterator
          A wrapper exhibiting a map iterator as an iterator on values.
protected static class AbstractByte2CharSortedMap.KeySetIterator
          A wrapper exhibiting a map iterator as an iterator on keys.
protected static class AbstractByte2DoubleSortedMap.KeySetIterator
          A wrapper exhibiting a map iterator as an iterator on keys.
protected static class AbstractByte2FloatSortedMap.KeySetIterator
          A wrapper exhibiting a map iterator as an iterator on keys.
protected static class AbstractByte2IntSortedMap.KeySetIterator
          A wrapper exhibiting a map iterator as an iterator on keys.
protected static class AbstractByte2LongSortedMap.KeySetIterator
          A wrapper exhibiting a map iterator as an iterator on keys.
protected static class AbstractByte2ObjectSortedMap.KeySetIterator<V>
          A wrapper exhibiting a map iterator as an iterator on keys.
protected static class AbstractByte2ReferenceSortedMap.KeySetIterator<V>
          A wrapper exhibiting a map iterator as an iterator on keys.
protected static class AbstractByte2ShortSortedMap.KeySetIterator
          A wrapper exhibiting a map iterator as an iterator on keys.
 class AbstractByteBidirectionalIterator
          An abstract class facilitating the creation of type-specific bidirectional iterators.
 class AbstractByteBigListIterator
          An abstract class facilitating the creation of type-specific big-list iterators.
 class AbstractByteIterator
          An abstract class facilitating the creation of type-specific iterators.
 class AbstractByteListIterator
          An abstract class facilitating the creation of type-specific list iterators.
static class ByteBigListIterators.BigListIteratorListIterator
          A class exposing a list iterator as a big-list iterator..
static class ByteBigListIterators.EmptyBigListIterator
          A class returning no elements and a type-specific big list iterator interface.
static class ByteBigListIterators.UnmodifiableBigListIterator
          An unmodifiable wrapper class for big list iterators.
static class ByteIterators.EmptyIterator
          A class returning no elements and a type-specific iterator interface.
static class ByteIterators.UnmodifiableBidirectionalIterator
          An unmodifiable wrapper class for bidirectional iterators.
static class ByteIterators.UnmodifiableIterator
          An unmodifiable wrapper class for iterators.
static class ByteIterators.UnmodifiableListIterator
          An unmodifiable wrapper class for list iterators.
 

Fields in it.unimi.dsi.fastutil.bytes declared as ByteIterator
protected  ByteIterator ByteIterators.UnmodifiableIterator.i
           
 

Methods in it.unimi.dsi.fastutil.bytes that return ByteIterator
static ByteIterator ByteIterators.asByteIterator(Iterator i)
          Wraps a standard iterator into a type-specific iterator.
 ByteIterator AbstractByteCollection.byteIterator()
          Deprecated. 
 ByteIterator ByteLists.EmptyList.byteIterator()
          Deprecated. 
 ByteIterator ByteCollection.byteIterator()
          Deprecated. As of fastutil 5, replaced by ByteCollection.iterator().
 ByteIterator ByteCollections.SynchronizedCollection.byteIterator()
          Deprecated. 
 ByteIterator ByteCollections.UnmodifiableCollection.byteIterator()
          Deprecated. 
 ByteIterator ByteCollections.IterableCollection.byteIterator()
          Deprecated. 
static ByteIterator ByteIterators.concat(ByteIterator[] a)
          Concatenates all iterators contained in an array.
static ByteIterator ByteIterators.concat(ByteIterator[] a, int offset, int length)
          Concatenates a sequence of iterators contained in an array.
 ByteIterator ByteSet.iterator()
          Returns a type-specific iterator on the elements of this set.
 ByteIterator ByteIterable.iterator()
          Returns a type-specific iterator.
abstract  ByteIterator AbstractByteCollection.iterator()
           
 ByteIterator ByteArraySet.iterator()
           
 ByteIterator ByteCollection.iterator()
          Returns a type-specific iterator on the elements of this collection.
 ByteIterator AbstractByte2ByteSortedMap.ValuesCollection.iterator()
           
 ByteIterator ByteCollections.SynchronizedCollection.iterator()
           
 ByteIterator ByteCollections.UnmodifiableCollection.iterator()
           
 ByteIterator ByteCollections.IterableCollection.iterator()
           
 ByteIterator ByteOpenCustomHashSet.iterator()
           
abstract  ByteIterator AbstractByteSet.iterator()
           
 ByteIterator ByteOpenHashSet.iterator()
           
static ByteIterator ByteIterators.unmodifiable(ByteIterator i)
          Returns an unmodifiable iterator backed by the specified iterator.
 

Methods in it.unimi.dsi.fastutil.bytes with parameters of type ByteIterator
static ByteIterator ByteIterators.concat(ByteIterator[] a)
          Concatenates all iterators contained in an array.
static ByteIterator ByteIterators.concat(ByteIterator[] a, int offset, int length)
          Concatenates a sequence of iterators contained in an array.
static ByteList ByteIterators.pour(ByteIterator i)
          Pours an iterator, returning a type-specific list.
static int ByteIterators.pour(ByteIterator i, ByteCollection s)
          Pours an iterator into a type-specific collection.
static int ByteIterators.pour(ByteIterator i, ByteCollection s, int max)
          Pours an iterator into a type-specific collection, with a limit on the number of elements.
static ByteList ByteIterators.pour(ByteIterator i, int max)
          Pours an iterator, returning a type-specific list, with a limit on the number of elements.
static ByteIterator ByteIterators.unmodifiable(ByteIterator i)
          Returns an unmodifiable iterator backed by the specified iterator.
static byte[] ByteIterators.unwrap(ByteIterator i)
          Unwraps an iterator, returning an array.
static int ByteIterators.unwrap(ByteIterator i, byte[] array)
          Unwraps an iterator into an array.
static int ByteIterators.unwrap(ByteIterator i, byte[] array, int offset, int max)
          Unwraps an iterator into an array starting at a given offset for a given number of elements.
static long ByteIterators.unwrap(ByteIterator i, ByteCollection c)
          Unwraps an iterator into a type-specific collection.
static int ByteIterators.unwrap(ByteIterator i, ByteCollection c, int max)
          Unwraps an iterator into a type-specific collection, with a limit on the number of elements.
static byte[] ByteIterators.unwrap(ByteIterator i, int max)
          Unwraps an iterator, returning an array, with a limit on the number of elements.
 

Constructors in it.unimi.dsi.fastutil.bytes with parameters of type ByteIterator
ByteArrayList(ByteIterator i)
          Creates a new array list and fills it with the elements returned by a type-specific iterator..
ByteAVLTreeSet(ByteIterator i)
          Creates a new tree set using elements provided by a type-specific iterator.
ByteBigArrayBigList(ByteIterator i)
          Creates a new big-array big list and fills it with the elements returned by a type-specific iterator..
ByteIterators.UnmodifiableIterator(ByteIterator i)
           
ByteLinkedOpenCustomHashSet(ByteIterator i, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
ByteLinkedOpenCustomHashSet(ByteIterator i, float f, ByteHash.Strategy strategy)
          Creates a new hash set using elements provided by a type-specific iterator.
ByteLinkedOpenHashSet(ByteIterator i)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
ByteLinkedOpenHashSet(ByteIterator i, float f)
          Creates a new hash set using elements provided by a type-specific iterator.
ByteOpenCustomHashSet(ByteIterator i, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
ByteOpenCustomHashSet(ByteIterator i, float f, ByteHash.Strategy strategy)
          Creates a new hash set using elements provided by a type-specific iterator.
ByteOpenHashSet(ByteIterator i)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
ByteOpenHashSet(ByteIterator i, float f)
          Creates a new hash set using elements provided by a type-specific iterator.
ByteRBTreeSet(ByteIterator i)
          Creates a new tree set using elements provided by a type-specific iterator.
 

Uses of ByteIterator in it.unimi.dsi.fastutil.chars
 

Classes in it.unimi.dsi.fastutil.chars that implement ByteIterator
protected static class AbstractChar2ByteSortedMap.ValuesIterator
          A wrapper exhibiting a map iterator as an iterator on values.
 

Methods in it.unimi.dsi.fastutil.chars that return ByteIterator
 ByteIterator AbstractChar2ByteSortedMap.ValuesCollection.iterator()
           
 

Uses of ByteIterator in it.unimi.dsi.fastutil.doubles
 

Classes in it.unimi.dsi.fastutil.doubles that implement ByteIterator
protected static class AbstractDouble2ByteSortedMap.ValuesIterator
          A wrapper exhibiting a map iterator as an iterator on values.
 

Methods in it.unimi.dsi.fastutil.doubles that return ByteIterator
 ByteIterator AbstractDouble2ByteSortedMap.ValuesCollection.iterator()
           
 

Methods in it.unimi.dsi.fastutil.doubles with parameters of type ByteIterator
static DoubleIterator DoubleIterators.wrap(ByteIterator iterator)
          Returns an iterator backed by the specified byte iterator.
 

Constructors in it.unimi.dsi.fastutil.doubles with parameters of type ByteIterator
DoubleIterators.ByteIteratorWrapper(ByteIterator iterator)
           
 

Uses of ByteIterator in it.unimi.dsi.fastutil.floats
 

Classes in it.unimi.dsi.fastutil.floats that implement ByteIterator
protected static class AbstractFloat2ByteSortedMap.ValuesIterator
          A wrapper exhibiting a map iterator as an iterator on values.
 

Methods in it.unimi.dsi.fastutil.floats that return ByteIterator
 ByteIterator AbstractFloat2ByteSortedMap.ValuesCollection.iterator()
           
 

Methods in it.unimi.dsi.fastutil.floats with parameters of type ByteIterator
static FloatIterator FloatIterators.wrap(ByteIterator iterator)
          Returns an iterator backed by the specified byte iterator.
 

Constructors in it.unimi.dsi.fastutil.floats with parameters of type ByteIterator
FloatIterators.ByteIteratorWrapper(ByteIterator iterator)
           
 

Uses of ByteIterator in it.unimi.dsi.fastutil.ints
 

Classes in it.unimi.dsi.fastutil.ints that implement ByteIterator
protected static class AbstractInt2ByteSortedMap.ValuesIterator
          A wrapper exhibiting a map iterator as an iterator on values.
 

Methods in it.unimi.dsi.fastutil.ints that return ByteIterator
 ByteIterator AbstractInt2ByteSortedMap.ValuesCollection.iterator()
           
 

Methods in it.unimi.dsi.fastutil.ints with parameters of type ByteIterator
static IntIterator IntIterators.wrap(ByteIterator iterator)
          Returns an iterator backed by the specified byte iterator.
 

Constructors in it.unimi.dsi.fastutil.ints with parameters of type ByteIterator
IntIterators.ByteIteratorWrapper(ByteIterator iterator)
           
 

Uses of ByteIterator in it.unimi.dsi.fastutil.io
 

Methods in it.unimi.dsi.fastutil.io that return ByteIterator
static ByteIterator TextIO.asByteIterator(BufferedReader reader)
          Wraps the given buffered reader into an iterator.
static ByteIterator BinIO.asByteIterator(CharSequence filename)
          Wraps a file given by a pathname into an iterator.
static ByteIterator TextIO.asByteIterator(CharSequence filename)
          Wraps a file given by a pathname into an iterator.
static ByteIterator BinIO.asByteIterator(DataInput dataInput)
          Wraps the given data input stream into an iterator.
static ByteIterator BinIO.asByteIterator(File file)
          Wraps a file given by a File object into an iterator.
static ByteIterator TextIO.asByteIterator(File file)
          Wraps a file given by a File object into an iterator.
 

Methods in it.unimi.dsi.fastutil.io with parameters of type ByteIterator
static void BinIO.storeBytes(ByteIterator i, CharSequence filename)
          Stores the element returned by an iterator to a file given by a pathname.
static void TextIO.storeBytes(ByteIterator i, CharSequence filename)
          Stores the element returned by an iterator to a file given by a pathname.
static void BinIO.storeBytes(ByteIterator i, DataOutput dataOutput)
          Stores the element returned by an iterator to a given data output.
static void BinIO.storeBytes(ByteIterator i, File file)
          Stores the element returned by an iterator to a file given by a File object.
static void TextIO.storeBytes(ByteIterator i, File file)
          Stores the element returned by an iterator to a file given by a File object.
static void TextIO.storeBytes(ByteIterator i, PrintStream stream)
          Stores the element returned by an iterator to a given print stream.
 

Uses of ByteIterator in it.unimi.dsi.fastutil.longs
 

Classes in it.unimi.dsi.fastutil.longs that implement ByteIterator
protected static class AbstractLong2ByteSortedMap.ValuesIterator
          A wrapper exhibiting a map iterator as an iterator on values.
 

Methods in it.unimi.dsi.fastutil.longs that return ByteIterator
 ByteIterator AbstractLong2ByteSortedMap.ValuesCollection.iterator()
           
 

Methods in it.unimi.dsi.fastutil.longs with parameters of type ByteIterator
static LongIterator LongIterators.wrap(ByteIterator iterator)
          Returns an iterator backed by the specified byte iterator.
 

Constructors in it.unimi.dsi.fastutil.longs with parameters of type ByteIterator
LongIterators.ByteIteratorWrapper(ByteIterator iterator)
           
 

Uses of ByteIterator in it.unimi.dsi.fastutil.objects
 

Classes in it.unimi.dsi.fastutil.objects that implement ByteIterator
protected static class AbstractObject2ByteSortedMap.ValuesIterator<K>
          A wrapper exhibiting a map iterator as an iterator on values.
protected static class AbstractReference2ByteSortedMap.ValuesIterator<K>
          A wrapper exhibiting a map iterator as an iterator on values.
 

Methods in it.unimi.dsi.fastutil.objects that return ByteIterator
 ByteIterator AbstractObject2ByteSortedMap.ValuesCollection.iterator()
           
 ByteIterator AbstractReference2ByteSortedMap.ValuesCollection.iterator()
           
 

Uses of ByteIterator in it.unimi.dsi.fastutil.shorts
 

Classes in it.unimi.dsi.fastutil.shorts that implement ByteIterator
protected static class AbstractShort2ByteSortedMap.ValuesIterator
          A wrapper exhibiting a map iterator as an iterator on values.
 

Methods in it.unimi.dsi.fastutil.shorts that return ByteIterator
 ByteIterator AbstractShort2ByteSortedMap.ValuesCollection.iterator()
           
 

Methods in it.unimi.dsi.fastutil.shorts with parameters of type ByteIterator
static ShortIterator ShortIterators.wrap(ByteIterator iterator)
          Returns an iterator backed by the specified byte iterator.
 

Constructors in it.unimi.dsi.fastutil.shorts with parameters of type ByteIterator
ShortIterators.ByteIteratorWrapper(ByteIterator iterator)
           
 



Copyright © 2011. All Rights Reserved.