|
JavaTM 2 Platform Std. Ed. v1.4.2 |
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Iterator | |
java.applet | Provides the classes necessary to create an applet and the classes an applet uses to communicate with its applet context. |
java.awt.dnd | Drag and Drop is a direct manipulation gesture found in many Graphical User Interface systems that provides a mechanism to transfer information between two entities logically associated with presentation elements in the GUI. |
java.beans.beancontext | Provides classes and interfaces relating to bean context. |
java.nio.charset.spi | Service-provider classes for the java.nio.charset package. |
java.security.cert | Provides classes and interfaces for parsing and managing certificates, certificate revocation lists (CRLs), and certification paths. |
java.util | Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array). |
javax.imageio | The main package of the Java Image I/O API. |
javax.imageio.spi | A package of the Java Image I/O API containing the plug-in interfaces for readers, writers, transcoders, and streams, and a runtime registry. |
Uses of Iterator in java.applet |
Methods in java.applet that return Iterator | |
Iterator |
AppletContext.getStreamKeys()
Finds all the keys of the streams in this applet context. |
Uses of Iterator in java.awt.dnd |
Methods in java.awt.dnd that return Iterator | |
Iterator |
DragGestureEvent.iterator()
Returns an Iterator for the events
comprising the gesture. |
Uses of Iterator in java.beans.beancontext |
Classes in java.beans.beancontext that implement Iterator | |
protected static class |
BeanContextSupport.BCSIterator
protected final subclass that encapsulates an iterator but implements a noop remove() method. |
Methods in java.beans.beancontext that return Iterator | |
Iterator |
BeanContextServicesSupport.BCSSProxyServiceProvider.getCurrentServiceSelectors(BeanContextServices bcs,
Class serviceClass)
|
Iterator |
BeanContextServicesSupport.getCurrentServiceClasses()
|
Iterator |
BeanContextServicesSupport.getCurrentServiceSelectors(Class serviceClass)
|
Iterator |
BeanContextSupport.iterator()
Gets all JavaBean or BeanContext instances currently nested in this BeanContext. |
protected Iterator |
BeanContextSupport.bcsChildren()
Returns an iterator of all children of this BeanContext. |
Iterator |
BeanContextServiceAvailableEvent.getCurrentServiceSelectors()
Gets the list of service dependent selectors. |
Iterator |
BeanContextServiceProvider.getCurrentServiceSelectors(BeanContextServices bcs,
Class serviceClass)
Invoked by BeanContextServices , this method
gets the current service selectors for the specified service. |
Iterator |
BeanContextServices.getCurrentServiceClasses()
Gets the currently available services for this context. |
Iterator |
BeanContextServices.getCurrentServiceSelectors(Class serviceClass)
Gets the list of service dependent service parameters (Service Selectors) for the specified service, by calling getCurrentServiceSelectors() on the underlying BeanContextServiceProvider. |
Iterator |
BeanContextMembershipEvent.iterator()
Gets the array of children affected by this event. |
Uses of Iterator in java.nio.charset.spi |
Methods in java.nio.charset.spi that return Iterator | |
abstract Iterator |
CharsetProvider.charsets()
Creates an iterator that iterates over the charsets supported by this provider. |
Uses of Iterator in java.security.cert |
Methods in java.security.cert that return Iterator | |
Iterator |
PolicyNode.getChildren()
Returns an iterator over the children of this node. |
Iterator |
CertificateFactory.getCertPathEncodings()
Returns an iteration of the CertPath encodings supported
by this certificate factory, with the default encoding first. |
abstract Iterator |
CertPath.getEncodings()
Returns an iteration of the encodings supported by this certification path, with the default encoding first. |
Iterator |
CertificateFactorySpi.engineGetCertPathEncodings()
Returns an iteration of the CertPath encodings supported
by this certificate factory, with the default encoding first. |
Uses of Iterator in java.util |
Subinterfaces of Iterator in java.util | |
interface |
ListIterator
An iterator for lists that allows the programmer to traverse the list in either direction, modify the list during iteration, and obtain the iterator's current position in the list. |
Methods in java.util that return Iterator | |
Iterator |
AbstractSequentialList.iterator()
Returns an iterator over the elements in this list (in proper sequence). |
Iterator |
TreeSet.iterator()
Returns an iterator over the elements in this set. |
Iterator |
HashSet.iterator()
Returns an iterator over the elements in this set. |
Iterator |
List.iterator()
Returns an iterator over the elements in this list in proper sequence. |
abstract Iterator |
AbstractCollection.iterator()
Returns an iterator over the elements contained in this collection. |
Iterator |
AbstractList.iterator()
Returns an iterator over the elements in this list in proper sequence. |
Iterator |
Collection.iterator()
Returns an iterator over the elements in this collection. |
Iterator |
Set.iterator()
Returns an iterator over the elements in this set. |
Uses of Iterator in javax.imageio |
Methods in javax.imageio that return Iterator | |
abstract Iterator |
ImageReader.getImageTypes(int imageIndex)
Returns an Iterator containing possible image
types to which the given image may be decoded, in the form of
ImageTypeSpecifiers s. |
Iterator |
ImageReader.readAll(Iterator params)
Returns an Iterator containing all the images,
thumbnails, and metadata, starting at the index given by
getMinIndex , from the input source in the form of
IIOImage objects. |
static Iterator |
ImageIO.getImageReaders(Object input)
Returns an Iterator containing all currently
registered ImageReader s that claim to be able to
decode the supplied Object , typically an
ImageInputStream . |
static Iterator |
ImageIO.getImageReadersByFormatName(String formatName)
Returns an Iterator containing all currently
registered ImageReader s that claim to be able to
decode the named format. |
static Iterator |
ImageIO.getImageReadersBySuffix(String fileSuffix)
Returns an Iterator containing all currently
registered ImageReader s that claim to be able to
decode files with the given suffix. |
static Iterator |
ImageIO.getImageReadersByMIMEType(String MIMEType)
Returns an Iterator containing all currently
registered ImageReader s that claim to be able to
decode files with the given MIME type. |
static Iterator |
ImageIO.getImageWritersByFormatName(String formatName)
Returns an Iterator containing all currently
registered ImageWriter s that claim to be able to
encode the named format. |
static Iterator |
ImageIO.getImageWritersBySuffix(String fileSuffix)
Returns an Iterator containing all currently
registered ImageWriter s that claim to be able to
encode files with the given suffix. |
static Iterator |
ImageIO.getImageWritersByMIMEType(String MIMEType)
Returns an Iterator containing all currently
registered ImageWriter s that claim to be able to
encode files with the given MIME type. |
static Iterator |
ImageIO.getImageWriters(ImageTypeSpecifier type,
String formatName)
Returns an Iterator containing all currently
registered ImageWriter s that claim to be able to
encode images of the given layout (specified using an
ImageTypeSpecifier ) in the given format. |
static Iterator |
ImageIO.getImageTranscoders(ImageReader reader,
ImageWriter writer)
Returns an Iterator containing all currently
registered ImageTranscoder s that claim to be
able to transcode between the metadata of the given
ImageReader and ImageWriter . |
Methods in javax.imageio with parameters of type Iterator | |
Iterator |
ImageReader.readAll(Iterator params)
Returns an Iterator containing all the images,
thumbnails, and metadata, starting at the index given by
getMinIndex , from the input source in the form of
IIOImage objects. |
protected static BufferedImage |
ImageReader.getDestination(ImageReadParam param,
Iterator imageTypes,
int width,
int height)
Returns the BufferedImage to which decoded pixel
data should be written. |
Uses of Iterator in javax.imageio.spi |
Methods in javax.imageio.spi that return Iterator | |
static Iterator |
ServiceRegistry.lookupProviders(Class providerClass,
ClassLoader loader)
Searches for implementations of a particular service class using the given class loader. |
static Iterator |
ServiceRegistry.lookupProviders(Class providerClass)
Locates and incrementally instantiates the available providers of a given service using the context class loader. |
Iterator |
ServiceRegistry.getCategories()
Returns an Iterator of Class objects
indicating the current set of categories. |
Iterator |
ServiceRegistry.getServiceProviders(Class category,
boolean useOrdering)
Returns an Iterator containing all registered
service providers in the given category. |
Iterator |
ServiceRegistry.getServiceProviders(Class category,
ServiceRegistry.Filter filter,
boolean useOrdering)
Returns an Iterator containing service provider
objects within a given category that satisfy a criterion
imposed by the supplied ServiceRegistry.Filter
object's filter method. |
Methods in javax.imageio.spi with parameters of type Iterator | |
void |
ServiceRegistry.registerServiceProviders(Iterator providers)
Adds a set of service provider objects, taken from an Iterator to the registry. |
Constructors in javax.imageio.spi with parameters of type Iterator | |
ServiceRegistry(Iterator categories)
Constructs a ServiceRegistry instance with a
set of categories taken from the categories
argument. |
|
JavaTM 2 Platform Std. Ed. v1.4.2 |
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.