Uses of Interface java.util.List

Uses in package javax.swing

Constructors with parameter type java.util.List

Constructs a SpinnerListModel using the supplied list.

Methods with parameter type java.util.List

void
Changes the backing list for this model.

Methods with return type java.util.List

List
Returns the backing list for this model.

Uses in package javax.xml.xpath

Methods with parameter type java.util.List

Object
Evaluate the function with the specified arguments.

Uses in package java.awt.dnd

Constructors with parameter type java.util.List

Methods with return type java.util.List

List
List
List

Uses in package javax.xml.stream.events

Methods with return type java.util.List

List
Returns the entities declared in the DTD.
List
Returns the notations declared in the DTD.

Uses in package javax.imageio

Constructors with parameter type java.util.List

IIOImage.IIOImage(Raster raster, List thumbnails, IIOMetadata metadata)
Construct an IIOImage containing raster image data, thumbnails and metadata.
IIOImage.IIOImage(RenderedImage image, List thumbnails, IIOMetadata metadata)
Construct an IIOImage containing rendered image data, thumbnails and metadata.

Fields of type java.util.List

List
A list of installed progress listeners.
List
A list of installed progress listeners.
List
A list of BufferedImage thumbnails of this image.
List
A list of installed update listeners.
List
A list of installed warning listeners.
List
A list of installed warning listeners.
List
A list of warning locales corresponding with the list of installed warning listeners.
List
A list of warning locales corresponding with the list of installed warning listeners.

Methods with parameter type java.util.List

void
ImageWriter.prepareInsertEmpty(int imageIndex, ImageTypeSpecifier imageType, int width, int height, IIOMetadata imageMetadata, List thumbnails, ImageWriteParam param)
Start inserting an empty image in the image output stream.
void
ImageWriter.prepareWriteEmpty(IIOMetadata streamMetadata, ImageTypeSpecifier imageType, int width, int height, IIOMetadata imageMetadata, List thumbnails, ImageWriteParam param)
Start writing an empty image to the end of the image output stream.
void
Set the list of thumbnails for this IIOImage to a new list of BufferedImages or to null.

Methods with return type java.util.List

List
Retrieve the list of thumbnails or null if there are no thumbnails associated with this IIOImage.

Uses in package java.awt.datatransfer

Methods with return type java.util.List

List
Returns a list of flavors corresponding to the given String native.
List
Returns a List of DataFlavors to which the specified String native can be translated by the data transfer subsystem.
List
Returns a list of String natives corresponding to the given flavor.
List
Returns a list of String natives corresponding to the given flavor.

Uses in package java.security.cert

Methods with parameter type java.util.List

CertPath
Generate a CertPath and initialize it with the certificates in the List argument.
CertPath
Generate a CertPath and initialize it with the certificates in the List argument.
void
Sets the certificate path checkers.
void
Set the cert stores.

Methods with return type java.util.List

List
Returns an immutable list of all certificate path checkers.
List
Returns an immutable list of cert stores.
List
Returns the immutable, thread-safe list of certificates in this path.
List
Returns the ExtendedKeyUsage extension of this certificate, or null if there is no extension present.

Uses in package javax.imageio.metadata

Methods with parameter type java.util.List

void
IIOMetadataFormatImpl.addAttribute(String elementName, String attrName, int dataType, boolean required, String defaultValue, List enumeratedValues)
void
IIOMetadataFormatImpl.addObjectValue(String elementName, Class classType, boolean required, Object defaultValue, List enumeratedValues)

Uses in package java.awt

Methods with return type java.util.List

List
Returns the currently registered key event dispatchers in List form.
List
Returns the currently registered key event post processors in List form.

Uses in package java.util

Classes implementing java.util.List

class
A basic implementation of most of the methods in the List interface to make it easier to create a List based on a random-access data structure.
class
Abstract superclass to make it easier to implement the List interface when backed by a sequential-access store, such as a linked list.
class
An array-backed implementation of the List interface.
class
Linked list implementation of the List interface.
class
class
The Vector classes implements growable arrays of Objects.

Fields of type java.util.List

List
An immutable, serializable, empty List, which implements RandomAccess.

Methods with parameter type java.util.List

int
Perform a binary search of a List for a key, using the natural ordering of the elements.
int
Perform a binary search of a List for a key, using a supplied Comparator.
void
Collections.copy(List dest, List source)
Copy one list to another.
void
Replace every element of a list with a given value.
int
Returns the starting index where the specified sublist first occurs in a larger list, or -1 if there is no matching position.
int
Returns the starting index where the specified sublist last occurs in a larger list, or -1 if there is no matching position.
boolean
Collections.replaceAll(List list, Object oldval, Object newval)
Replace all instances of one object with another in the specified list.
void
Reverse a given list.
void
Collections.rotate(List list, int distance)
Rotate the elements in a list by a specified distance.
void
Shuffle a list according to a default source of randomness.
void
Shuffle a list according to a given source of randomness.
void
Sort a list according to the natural ordering of its elements.
void
Sort a list according to a specified Comparator.
void
Collections.swap(List l, int i, int j)
Swaps the elements at the specified positions within the list.
List
Returns a synchronized (thread-safe) list wrapper backed by the given list.
List
Returns an unmodifiable view of the given list.

Methods with return type java.util.List

List
Returns a list "view" of the specified array.
List
Creates an immutable list consisting of the same object repeated n times.
List
Obtain an immutable List consisting of a single element.
List
AbstractList.subList(int fromIndex, int toIndex)
Obtain a List view of a subsection of this list, from fromIndex (inclusive) to toIndex (exclusive).
List
List.subList(int fromIndex, int toIndex)
Obtain a List view of a subsection of this list, from fromIndex (inclusive) to toIndex (exclusive).
List
Vector.subList(int fromIndex, int toIndex)
Obtain a List view of a subsection of this list, from fromIndex (inclusive) to toIndex (exclusive).
List
Returns a synchronized (thread-safe) list wrapper backed by the given list.
List
Returns an unmodifiable view of the given list.