Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
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).
Provides classes for reading and writing the JAR (Java ARchive) file
format, which is based on the standard ZIP file format with an
optional manifest file.
The scripting API consists of interfaces and classes that define
Java TM Scripting Engines and provides
a framework for their use in Java applications.
BeanContext
The BeanContext acts a logical hierarchical container for JavaBeans.
interface
BeanContextServices
The BeanContextServices interface provides a mechanism for a BeanContext
to expose generic "services" to the BeanContextChild objects within.
BeanContextSupport.addAll(Collection c)
add Collection to set of Children (Unsupported)
implementations must synchronized on the hierarchy lock and "children" protected field
boolean
BeanContextSupport.containsAll(Collection c)
Tests to see if all objects in the
specified Collection are children of
this BeanContext.
BeanContextSupport.removeAll(Collection c)
remove all specified children (Unsupported)
implementations must synchronized on the hierarchy lock and "children" protected field
boolean
BeanContextSupport.retainAll(Collection c)
retain only specified children (Unsupported)
implementations must synchronized on the hierarchy lock and "children" protected field
CertificateFactorySpi.engineGenerateCertificates(InputStream inStream)
Returns a (possibly empty) collection view of the certificates read
from the given input stream inStream.
CertificateFactorySpi.engineGenerateCRLs(InputStream inStream)
Returns a (possibly empty) collection view of the CRLs read
from the given input stream inStream.
CertificateFactory.generateCertificates(InputStream inStream)
Returns a (possibly empty) collection view of the certificates read
from the given input stream inStream.
CertificateFactory.generateCRLs(InputStream inStream)
Returns a (possibly empty) collection view of the CRLs read
from the given input stream inStream.
X509Certificate.getIssuerAlternativeNames()
Gets an immutable collection of issuer alternative names from the
IssuerAltName extension, (OID = 2.5.29.18).
X509Certificate.getSubjectAlternativeNames()
Gets an immutable collection of subject alternative names from the
SubjectAltName extension, (OID = 2.5.29.17).
PKIXCertPathChecker.check(Certificate cert,
Collection<String> unresolvedCritExts)
Performs the check(s) on the specified certificate using its internal
state and removes any critical extensions that it processes from the
specified collection of OID strings that represent the unresolved
critical extensions.
CollectionCertStoreParameters(Collection<?> collection)
Creates an instance of CollectionCertStoreParameters
which will allow certificates and CRLs to be retrieved from the
specified Collection.
AbstractCollection<E>
This class provides a skeletal implementation of the Collection
interface, to minimize the effort required to implement this interface.
class
AbstractList<E>
This class provides a skeletal implementation of the List
interface to minimize the effort required to implement this interface
backed by a "random access" data store (such as an array).
class
AbstractQueue<E>
This class provides skeletal implementations of some Queue
operations.
class
AbstractSequentialList<E>
This class provides a skeletal implementation of the List
interface to minimize the effort required to implement this interface
backed by a "sequential access" data store (such as a linked list).
class
AbstractSet<E>
This class provides a skeletal implementation of the Set
interface to minimize the effort required to implement this
interface.
LinkedList.addAll(Collection<? extends E> c)
Appends all of the elements in the specified collection to the end of
this list, in the order that they are returned by the specified
collection's iterator.
boolean
TreeSet.addAll(Collection<? extends E> c)
Adds all of the elements in the specified collection to this set.
boolean
AbstractQueue.addAll(Collection<? extends E> c)
Adds all of the elements in the specified collection to this
queue.
boolean
ArrayList.addAll(Collection<? extends E> c)
Appends all of the elements in the specified collection to the end of
this list, in the order that they are returned by the
specified collection's Iterator.
boolean
List.addAll(Collection<? extends E> c)
Appends all of the elements in the specified collection to the end of
this list, in the order that they are returned by the specified
collection's iterator (optional operation).
boolean
AbstractCollection.addAll(Collection<? extends E> c)
Adds all of the elements in the specified collection to this collection
(optional operation).
boolean
Vector.addAll(Collection<? extends E> c)
Appends all of the elements in the specified Collection to the end of
this Vector, in the order that they are returned by the specified
Collection's Iterator.
boolean
Collection.addAll(Collection<? extends E> c)
Adds all of the elements in the specified collection to this collection
(optional operation).
boolean
Set.addAll(Collection<? extends E> c)
Adds all of the elements in the specified collection to this set if
they're not already present (optional operation).
static
<T> boolean
Collections.addAll(Collection<? super T> c,
T... elements)
Adds all of the specified elements to the specified collection.
boolean
LinkedList.addAll(int index,
Collection<? extends E> c)
Inserts all of the elements in the specified collection into this
list, starting at the specified position.
boolean
AbstractSequentialList.addAll(int index,
Collection<? extends E> c)
Inserts all of the elements in the specified collection into this
list at the specified position (optional operation).
boolean
ArrayList.addAll(int index,
Collection<? extends E> c)
Inserts all of the elements in the specified collection into this
list, starting at the specified position.
boolean
List.addAll(int index,
Collection<? extends E> c)
Inserts all of the elements in the specified collection into this
list at the specified position (optional operation).
boolean
AbstractList.addAll(int index,
Collection<? extends E> c)
Inserts all of the elements in the specified collection into this
list at the specified position (optional operation).
boolean
Vector.addAll(int index,
Collection<? extends E> c)
Inserts all of the elements in the specified Collection into this
Vector at the specified position.
Collections.max(Collection<? extends T> coll)
Returns the maximum element of the given collection, according to the
natural ordering of its elements.
static
<T> T
Collections.max(Collection<? extends T> coll,
Comparator<? super T> comp)
Returns the maximum element of the given collection, according to the
order induced by the specified comparator.
Collections.min(Collection<? extends T> coll)
Returns the minimum element of the given collection, according to the
natural ordering of its elements.
static
<T> T
Collections.min(Collection<? extends T> coll,
Comparator<? super T> comp)
Returns the minimum element of the given collection, according to the
order induced by the specified comparator.
boolean
AbstractSet.removeAll(Collection<?> c)
Removes from this set all of its elements that are contained in the
specified collection (optional operation).
boolean
List.removeAll(Collection<?> c)
Removes from this list all of its elements that are contained in the
specified collection (optional operation).
boolean
AbstractCollection.removeAll(Collection<?> c)
Removes all of this collection's elements that are also contained in the
specified collection (optional operation).
boolean
Vector.removeAll(Collection<?> c)
Removes from this Vector all of its elements that are contained in the
specified Collection.
boolean
Collection.removeAll(Collection<?> c)
Removes all of this collection's elements that are also contained in the
specified collection (optional operation).
boolean
Set.removeAll(Collection<?> c)
Removes from this set all of its elements that are contained in the
specified collection (optional operation).
boolean
List.retainAll(Collection<?> c)
Retains only the elements in this list that are contained in the
specified collection (optional operation).
boolean
AbstractCollection.retainAll(Collection<?> c)
Retains only the elements in this collection that are contained in the
specified collection (optional operation).
boolean
Vector.retainAll(Collection<?> c)
Retains only the elements in this Vector that are contained in the
specified Collection.
boolean
Collection.retainAll(Collection<?> c)
Retains only the elements in this collection that are contained in the
specified collection (optional operation).
boolean
Set.retainAll(Collection<?> c)
Retains only the elements in this set that are contained in the
specified collection (optional operation).
ArrayDeque(Collection<? extends E> c)
Constructs a deque containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.
ArrayList(Collection<? extends E> c)
Constructs a list containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.
HashSet(Collection<? extends E> c)
Constructs a new set containing the elements in the specified
collection.
LinkedHashSet(Collection<? extends E> c)
Constructs a new linked hash set with the same elements as the
specified collection.
LinkedList(Collection<? extends E> c)
Constructs a list containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.
PriorityQueue(Collection<? extends E> c)
Creates a PriorityQueue containing the elements in the
specified collection.
TreeSet(Collection<? extends E> c)
Constructs a new tree set containing the elements in the specified
collection, sorted according to the natural ordering of its
elements.
Vector(Collection<? extends E> c)
Constructs a vector containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.
BlockingDeque<E>
A Deque that additionally supports blocking operations that wait
for the deque to become non-empty when retrieving an element, and wait for
space to become available in the deque when storing an element.
interface
BlockingQueue<E>
A Queue that additionally supports operations
that wait for the queue to become non-empty when retrieving an
element, and wait for space to become available in the queue when
storing an element.
CopyOnWriteArrayList<E>
A thread-safe variant of ArrayList in which all mutative
operations (add, set, and so on) are implemented by
making a fresh copy of the underlying array.
CopyOnWriteArraySet.addAll(Collection<? extends E> c)
Adds all of the elements in the specified collection to this set if
they're not already present.
boolean
CopyOnWriteArrayList.addAll(Collection<? extends E> c)
Appends all of the elements in the specified collection to the end
of this list, in the order that they are returned by the specified
collection's iterator.
boolean
CopyOnWriteArrayList.addAll(int index,
Collection<? extends E> c)
Inserts all of the elements in the specified collection into this
list, starting at the specified position.
int
CopyOnWriteArrayList.addAllAbsent(Collection<? extends E> c)
Appends all of the elements in the specified collection that
are not already contained in this list, to the end of
this list, in the order that they are returned by the
specified collection's iterator.
boolean
SynchronousQueue.containsAll(Collection<?> c)
Returns false unless the given collection is empty.
boolean
CopyOnWriteArraySet.containsAll(Collection<?> c)
Returns true if this set contains all of the elements of the
specified collection.
boolean
CopyOnWriteArrayList.containsAll(Collection<?> c)
Returns true if this list contains all of the elements of the
specified collection.
BlockingQueue.drainTo(Collection<? super E> c,
int maxElements)
Removes at most the given number of available elements from
this queue and adds them to the given collection.
ExecutorService.invokeAll(Collection<? extends Callable<T>> tasks)
Executes the given tasks, returning a list of Futures holding
their status and results when all complete.
ExecutorService.invokeAll(Collection<? extends Callable<T>> tasks,
long timeout,
TimeUnit unit)
Executes the given tasks, returning a list of Futures holding
their status and results
when all complete or the timeout expires, whichever happens first.
ExecutorService.invokeAny(Collection<? extends Callable<T>> tasks)
Executes the given tasks, returning the result
of one that has completed successfully (i.e., without throwing
an exception), if any do.
ExecutorService.invokeAny(Collection<? extends Callable<T>> tasks,
long timeout,
TimeUnit unit)
Executes the given tasks, returning the result
of one that has completed successfully (i.e., without throwing
an exception), if any do before the given timeout elapses.
ArrayBlockingQueue(int capacity,
boolean fair,
Collection<? extends E> c)
Creates an ArrayBlockingQueue with the given (fixed)
capacity, the specified access policy and initially containing the
elements of the given collection,
added in traversal order of the collection's iterator.
ConcurrentLinkedQueue(Collection<? extends E> c)
Creates a ConcurrentLinkedQueue
initially containing the elements of the given collection,
added in traversal order of the collection's iterator.
CopyOnWriteArrayList(Collection<? extends E> c)
Creates a list containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.
CopyOnWriteArraySet(Collection<? extends E> c)
Creates a set containing all of the elements of the specified
collection.
DelayQueue(Collection<? extends E> c)
Creates a DelayQueue initially containing the elements of the
given collection of Delayed instances.
LinkedBlockingDeque(Collection<? extends E> c)
Creates a LinkedBlockingDeque with a capacity of
Integer.MAX_VALUE, initially containing the elements of
the given collection, added in traversal order of the
collection's iterator.
LinkedBlockingQueue(Collection<? extends E> c)
Creates a LinkedBlockingQueue with a capacity of
Integer.MAX_VALUE, initially containing the elements of the
given collection,
added in traversal order of the collection's iterator.
PriorityBlockingQueue(Collection<? extends E> c)
Creates a PriorityBlockingQueue containing the elements
in the specified collection.
AbstractQueuedLongSynchronizer.ConditionObject.getWaitingThreads()
Returns a collection containing those threads that may be
waiting on this Condition.
ReentrantReadWriteLock.getWaitingThreads(Condition condition)
Returns a collection containing those threads that may be
waiting on the given condition associated with the write lock.
ReentrantLock.getWaitingThreads(Condition condition)
Returns a collection containing those threads that may be
waiting on the given condition associated with this lock.
RoleList
A RoleList represents a list of roles (Role objects).
class
RoleUnresolvedList
A RoleUnresolvedList represents a list of RoleUnresolved objects,
representing roles not retrieved from a relation due to a problem
encountered when trying to access (read or write) the roles.
JobStateReasons
Class JobStateReasons is a printing attribute class, a set of enumeration
values, that provides additional information about the job's current state,
i.e., information that augments the value of the job's JobState attribute.
Submit a bug or feature For further API reference and developer documentation, see Java SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.