Uses of Interface
java.util.Collection
-
Uses of Collection in java.security
Methods in java.security that return Collection Modifier and Type Method Description Collection<Object>Provider. values() -
Uses of Collection in java.security.cert
Methods in java.security.cert that return Collection Modifier and Type Method Description abstract Collection<? extends Certificate>CertificateFactorySpi. engineGenerateCertificates(InputStream inStream)Generates and initializes a collection of certificates from the provided input stream.abstract Collection<? extends CRL>CertificateFactorySpi. engineGenerateCRLs(InputStream inStream)Generates and initializes a collection of Certificate Revocation List (CRL) from the provided input stream.abstract Collection<? extends Certificate>CertStoreSpi. engineGetCertificates(CertSelector selector)Returns the list ofCertificates for the specifiedCertSelectorfrom this instance.abstract Collection<? extends CRL>CertStoreSpi. engineGetCRLs(CRLSelector selector)Returns the list ofCRLs for the specifiedCRLSelectorfrom this instance.Collection<? extends Certificate>CertificateFactory. generateCertificates(InputStream inStream)Generates and initializes a collection of (unrelated) certificates from the provided input stream.Collection<? extends CRL>CertificateFactory. generateCRLs(InputStream inStream)Generates and initializes a collection of Certificate Revocation List (CRL) from the provided input stream.Collection<? extends Certificate>CertStore. getCertificates(CertSelector selector)Returns the list ofCertificates for the specifiedCertSelectorfrom this certificate store.Collection<?>CollectionCertStoreParameters. getCollection()Returns the collection where theCertificates andCRLs are retrieved from.Collection<? extends CRL>CertStore. getCRLs(CRLSelector selector)Returns the list ofCRLs for the specifiedCRLSelectorfrom this certificate store.Collection<List<?>>X509Certificate. getIssuerAlternativeNames()Returns a read-only list of the issuer alternative names from theIssuerAltNameextension.Collection<Object>X509CRLSelector. getIssuerNames()Returns the criterion for the issuer distinguished names.Collection<X500Principal>X509CRLSelector. getIssuers()Returns the criterion for the issuer distinguished names.Collection<List<?>>X509CertSelector. getPathToNames()Returns the criterion for the pathToNames constraint.Collection<List<?>>X509Certificate. getSubjectAlternativeNames()Returns a read-only list of the subject alternative names from theSubjectAltNameextension.Collection<List<?>>X509CertSelector. getSubjectAlternativeNames()Returns the criterion for subject alternative names.Methods in java.security.cert with parameters of type Collection Modifier and Type Method Description abstract voidPKIXCertPathChecker. check(Certificate cert, Collection<String> unresolvedCritExts)Checks the specified certificate and removes the processed critical extensions from the specified list of X.509 extension OIDs.voidX509CRLSelector. setIssuerNames(Collection<?> names)Do not use: useX509CRLSelector.setIssuers(Collection)or one ofX509CRLSelector.addIssuerName(java.lang.String)instead.voidX509CRLSelector. setIssuers(Collection<X500Principal> issuers)Sets the criterion for the issuer distinguished names.voidX509CertSelector. setPathToNames(Collection<List<?>> names)Sets the criterion for the pathToNames constraint.voidX509CertSelector. setSubjectAlternativeNames(Collection<List<?>> names)Sets the criterion for subject alternative names.Constructors in java.security.cert with parameters of type Collection Constructor Description CollectionCertStoreParameters(Collection<?> collection)Creates a newCollectionCertStoreParameterswith the specified collection. -
Uses of Collection in java.util
Subinterfaces of Collection in java.util Modifier and Type Interface Description interfaceDeque<E>A linear collection that supports element insertion and removal at both ends.interfaceList<E>AListis a collection which maintains an ordering for its elements.interfaceNavigableSet<E>ASortedSetextended with navigation methods reporting closest matches for given search targets.interfaceQueue<E>A collection designed for holding elements prior to processing.interfaceSet<E>ASetis a data structure which does not allow duplicate elements.interfaceSortedSet<E>SortedSet is a Set which iterates over its elements in a sorted order.Classes in java.util that implement Collection Modifier and Type Class Description classAbstractCollection<E>ClassAbstractCollectionis an abstract implementation of theCollectioninterface.classAbstractList<E>AbstractListis an abstract implementation of theListinterface, optimized for a backing store which supports random access.classAbstractQueue<E>This class provides skeletal implementations of someQueueoperations.classAbstractSequentialList<E>AbstractSequentialList is an abstract implementation of the List interface.classAbstractSet<E>An AbstractSet is an abstract implementation of the Set interface.classArrayDeque<E>Resizable-array implementation of theDequeinterface.classArrayList<E>ArrayList is an implementation ofList, backed by an array.classEnumSet<E extends Enum<E>>An EnumSet is a specialized Set to be used with enums as keys.classHashSet<E>HashSet is an implementation of a Set.classLinkedHashSet<E>LinkedHashSet is a variant of HashSet.classLinkedList<E>LinkedList is an implementation ofList, backed by a doubly-linked list.classPriorityQueue<E>A PriorityQueue holds elements on a priority heap, which orders the elements according to their natural order or according to the comparator specified at construction time.classStack<E>Stackis a Last-In/First-Out(LIFO) data structure which represents a stack of objects.classTreeSet<E>TreeSet is an implementation of SortedSet.classUnsafeArrayList<T>An array-backed list that exposes its array.classVector<E>Vector is an implementation ofList, backed by an array and synchronized.Methods in java.util that return Collection Modifier and Type Method Description static <E> Collection<E>Collections. checkedCollection(Collection<E> c, Class<E> type)Returns a dynamically typesafe view of the specified collection.static <T> Collection<T>Collections. synchronizedCollection(Collection<T> collection)Returns a wrapper on the specified collection which synchronizes all access to the collection.static <E> Collection<E>Collections. unmodifiableCollection(Collection<? extends E> collection)Returns a wrapper on the specified collection which throws anUnsupportedOperationExceptionwhenever an attempt is made to modify the collection.Collection<V>AbstractMap. values()Returns aCollectionof the values contained in thisMap.Collection<V>EnumMap. values()Returns aCollectionof the values contained in thisEnumMap.Collection<V>HashMap. values()Returns a collection of the values contained in this map.Collection<V>Hashtable. values()Returns a collection of the values contained in thisHashtable.Collection<V>IdentityHashMap. values()Returns a collection of the values contained in this map.Collection<V>Map. values()Returns aCollectionof the values contained in thisMap.Collection<V>WeakHashMap. values()Returns a collection of the values contained in this map.Methods in java.util with parameters of type Collection Modifier and Type Method Description booleanAbstractCollection. addAll(Collection<? extends E> collection)Attempts to add all of the objects contained incollectionto the contents of thisCollection(optional).booleanAbstractList. addAll(int location, Collection<? extends E> collection)Inserts the objects in the specified Collection at the specified location in this List.booleanAbstractQueue. addAll(Collection<? extends E> c)Adds all of the elements in the specified collection to this queue.booleanAbstractSequentialList. addAll(int location, Collection<? extends E> collection)booleanArrayList. addAll(int index, Collection<? extends E> collection)Inserts the objects in the specified collection at the specified location in this List.booleanArrayList. addAll(Collection<? extends E> collection)Adds the objects in the specified collection to thisArrayList.booleanCollection. addAll(Collection<? extends E> collection)Attempts to add all of the objects contained inCollectionto the contents of thisCollection(optional).static <T> booleanCollections. addAll(Collection<? super T> c, T... a)Adds all the specified elements to the specified collection.booleanLinkedList. addAll(int location, Collection<? extends E> collection)Inserts the objects in the specified collection at the specified location in thisLinkedList.booleanLinkedList. addAll(Collection<? extends E> collection)Adds the objects in the specified Collection to thisLinkedList.booleanList. addAll(int location, Collection<? extends E> collection)Inserts the objects in the specified collection at the specified location in thisList.booleanList. addAll(Collection<? extends E> collection)Adds the objects in the specified collection to the end of thisList.booleanSet. addAll(Collection<? extends E> collection)Adds the objects in the specified collection which do not exist yet in this set.booleanTreeSet. addAll(Collection<? extends E> collection)Adds the objects in the specified collection to thisTreeSet.booleanVector. addAll(int location, Collection<? extends E> collection)Inserts the objects in the specified collection at the specified location in this vector.booleanVector. addAll(Collection<? extends E> collection)Adds the objects in the specified collection to the end of this vector.static <E> Collection<E>Collections. checkedCollection(Collection<E> c, Class<E> type)Returns a dynamically typesafe view of the specified collection.booleanAbstractCollection. containsAll(Collection<?> collection)Tests whether thisCollectioncontains all objects contained in the specifiedCollection.booleanCollection. containsAll(Collection<?> collection)Tests whether thisCollectioncontains all objects contained in the specifiedCollection.booleanList. containsAll(Collection<?> collection)Tests whether thisListcontains all objects contained in the specified collection.booleanSet. containsAll(Collection<?> collection)Searches this set for all objects in the specified collection.booleanVector. containsAll(Collection<?> collection)Searches this vector for all objects in the specified collection.static <E extends Enum<E>>
EnumSet<E>EnumSet. copyOf(Collection<E> c)Creates an enum set.static booleanCollections. disjoint(Collection<?> c1, Collection<?> c2)Returns whether the specified collections have no elements in common.static <T> Enumeration<T>Collections. enumeration(Collection<T> collection)Returns anEnumerationon the specified collection.static intCollections. frequency(Collection<?> c, Object o)Returns the number of elements in theCollectionthat match theObjectpassed.static <T extends Object & Comparable<? super T>>
TCollections. max(Collection<? extends T> collection)Searches the specified collection for the maximum element.static <T> TCollections. max(Collection<? extends T> collection, Comparator<? super T> comparator)Searches the specified collection for the maximum element using the specified comparator.static <T extends Object & Comparable<? super T>>
TCollections. min(Collection<? extends T> collection)Searches the specified collection for the minimum element.static <T> TCollections. min(Collection<? extends T> collection, Comparator<? super T> comparator)Searches the specified collection for the minimum element using the specified comparator.booleanAbstractCollection. removeAll(Collection<?> collection)Removes all occurrences in thisCollectionof each object in the specifiedCollection(optional).booleanAbstractSet. removeAll(Collection<?> collection)Removes all occurrences in this collection which are contained in the specified collection.booleanCollection. removeAll(Collection<?> collection)Removes all occurrences in thisCollectionof each object in the specifiedCollection(optional).booleanList. removeAll(Collection<?> collection)Removes all occurrences in thisListof each object in the specified collection.booleanSet. removeAll(Collection<?> collection)Removes all objects in the specified collection from this set.booleanVector. removeAll(Collection<?> collection)Removes all occurrences in this vector of each object in the specified Collection.booleanAbstractCollection. retainAll(Collection<?> collection)Removes all objects from thisCollectionthat are not also found in theCollectionpassed (optional).booleanCollection. retainAll(Collection<?> collection)Removes all objects from thisCollectionthat are not also found in theCollectionpassed (optional).booleanList. retainAll(Collection<?> collection)Removes all objects from thisListthat are not contained in the specified collection.booleanSet. retainAll(Collection<?> collection)Removes all objects from this set that are not contained in the specified collection.booleanVector. retainAll(Collection<?> collection)Removes all objects from this vector that are not contained in the specified collection.static <T> Collection<T>Collections. synchronizedCollection(Collection<T> collection)Returns a wrapper on the specified collection which synchronizes all access to the collection.static <E> Collection<E>Collections. unmodifiableCollection(Collection<? extends E> collection)Returns a wrapper on the specified collection which throws anUnsupportedOperationExceptionwhenever an attempt is made to modify the collection.Constructors in java.util with parameters of type Collection Constructor Description 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> collection)Constructs a new instance ofArrayListcontaining the elements of the specified collection.HashSet(Collection<? extends E> collection)Constructs a new instance ofHashSetcontaining the unique elements in the specified collection.LinkedHashSet(Collection<? extends E> collection)Constructs a new instance ofLinkedHashSetcontaining the unique elements in the specified collection.LinkedList(Collection<? extends E> collection)Constructs a new instance ofLinkedListthat holds all of the elements contained in the specifiedcollection.PriorityQueue(Collection<? extends E> c)Constructs a priority queue that contains the elements of a collection.TreeSet(Collection<? extends E> collection)Constructs a new instance ofTreeSetwhich uses natural ordering and containing the unique elements in the specified collection.Vector(Collection<? extends E> collection)Constructs a new instance ofVectorcontaining the elements incollection. -
Uses of Collection in java.util.concurrent
Subinterfaces of Collection in java.util.concurrent Modifier and Type Interface Description interfaceBlockingDeque<E>ADequethat 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.interfaceBlockingQueue<E>AQueuethat 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.interfaceTransferQueue<E>ABlockingQueuein which producers may wait for consumers to receive elements.Classes in java.util.concurrent that implement Collection Modifier and Type Class Description classArrayBlockingQueue<E>A bounded blocking queue backed by an array.classConcurrentLinkedDeque<E>An unbounded concurrent deque based on linked nodes.classConcurrentLinkedQueue<E>An unbounded thread-safe queue based on linked nodes.classConcurrentSkipListSet<E>A scalable concurrentNavigableSetimplementation based on aConcurrentSkipListMap.classCopyOnWriteArrayList<E>A thread-safe random-access list.classCopyOnWriteArraySet<E>ASetthat uses an internalCopyOnWriteArrayListfor all of its operations.classDelayQueue<E extends Delayed>An unbounded blocking queue ofDelayedelements, in which an element can only be taken when its delay has expired.classLinkedBlockingDeque<E>An optionally-bounded blocking deque based on linked nodes.classLinkedBlockingQueue<E>An optionally-bounded blocking queue based on linked nodes.classLinkedTransferQueue<E>An unboundedTransferQueuebased on linked nodes.classPriorityBlockingQueue<E>An unbounded blocking queue that uses the same ordering rules as classPriorityQueueand supplies blocking retrieval operations.classSynchronousQueue<E>A blocking queue in which each insert operation must wait for a corresponding remove operation by another thread, and vice versa.Methods in java.util.concurrent that return Collection Modifier and Type Method Description protected Collection<Thread>Semaphore. getQueuedThreads()Returns a collection containing threads that may be waiting to acquire.static <T extends ForkJoinTask<?>>
Collection<T>ForkJoinTask. invokeAll(Collection<T> tasks)Forks all tasks in the specified collection, returning whenisDoneholds for each task or an (unchecked) exception is encountered, in which case the exception is rethrown.Collection<V>ConcurrentHashMap. values()Returns aCollectionview of the values contained in this map.Collection<V>ConcurrentSkipListMap. values()Returns aCollectionview of the values contained in this map.Methods in java.util.concurrent with parameters of type Collection Modifier and Type Method Description booleanConcurrentLinkedDeque. addAll(Collection<? extends E> c)Appends all of the elements in the specified collection to the end of this deque, in the order that they are returned by the specified collection's iterator.booleanConcurrentLinkedQueue. addAll(Collection<? extends E> c)Appends all of the elements in the specified collection to the end of this queue, in the order that they are returned by the specified collection's iterator.booleanCopyOnWriteArrayList. addAll(int index, Collection<? extends E> collection)booleanCopyOnWriteArrayList. addAll(Collection<? extends E> collection)booleanCopyOnWriteArraySet. addAll(Collection<? extends E> c)Adds all of the elements in the specified collection to this set if they're not already present.intCopyOnWriteArrayList. addAllAbsent(Collection<? extends E> collection)Adds the elements ofcollectionthat are not already present in this list.booleanCopyOnWriteArrayList. containsAll(Collection<?> collection)booleanCopyOnWriteArraySet. containsAll(Collection<?> c)Returnstrueif this set contains all of the elements of the specified collection.booleanSynchronousQueue. containsAll(Collection<?> c)Returnsfalseunless the given collection is empty.protected intForkJoinPool. drainTasksTo(Collection<? super ForkJoinTask<?>> c)Removes all available unexecuted submitted and forked tasks from scheduling queues and adds them to the given collection, without altering their execution status.intArrayBlockingQueue. drainTo(Collection<? super E> c)intArrayBlockingQueue. drainTo(Collection<? super E> c, int maxElements)intBlockingQueue. drainTo(Collection<? super E> c)Removes all available elements from this queue and adds them to the given collection.intBlockingQueue. 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.intDelayQueue. drainTo(Collection<? super E> c)intDelayQueue. drainTo(Collection<? super E> c, int maxElements)intLinkedBlockingDeque. drainTo(Collection<? super E> c)intLinkedBlockingDeque. drainTo(Collection<? super E> c, int maxElements)intLinkedBlockingQueue. drainTo(Collection<? super E> c)intLinkedBlockingQueue. drainTo(Collection<? super E> c, int maxElements)intLinkedTransferQueue. drainTo(Collection<? super E> c)intLinkedTransferQueue. drainTo(Collection<? super E> c, int maxElements)intPriorityBlockingQueue. drainTo(Collection<? super E> c)intPriorityBlockingQueue. drainTo(Collection<? super E> c, int maxElements)intSynchronousQueue. drainTo(Collection<? super E> c)intSynchronousQueue. drainTo(Collection<? super E> c, int maxElements)<T> List<Future<T>>AbstractExecutorService. invokeAll(Collection<? extends Callable<T>> tasks)<T> List<Future<T>>AbstractExecutorService. invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)<T> List<Future<T>>ExecutorService. invokeAll(Collection<? extends Callable<T>> tasks)Executes the given tasks, returning a list of Futures holding their status and results when all complete.<T> List<Future<T>>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.<T> List<Future<T>>ForkJoinPool. invokeAll(Collection<? extends Callable<T>> tasks)static <T extends ForkJoinTask<?>>
Collection<T>ForkJoinTask. invokeAll(Collection<T> tasks)Forks all tasks in the specified collection, returning whenisDoneholds for each task or an (unchecked) exception is encountered, in which case the exception is rethrown.<T> TAbstractExecutorService. invokeAny(Collection<? extends Callable<T>> tasks)<T> TAbstractExecutorService. invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)<T> TExecutorService. 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.<T> TExecutorService. 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.booleanConcurrentSkipListSet. removeAll(Collection<?> c)Removes from this set all of its elements that are contained in the specified collection.booleanCopyOnWriteArrayList. removeAll(Collection<?> collection)booleanCopyOnWriteArraySet. removeAll(Collection<?> c)Removes from this set all of its elements that are contained in the specified collection.booleanSynchronousQueue. removeAll(Collection<?> c)Always returnsfalse.booleanCopyOnWriteArrayList. retainAll(Collection<?> collection)booleanCopyOnWriteArraySet. retainAll(Collection<?> c)Retains only the elements in this set that are contained in the specified collection.booleanSynchronousQueue. retainAll(Collection<?> c)Always returnsfalse.Constructors in java.util.concurrent with parameters of type Collection Constructor Description ArrayBlockingQueue(int capacity, boolean fair, Collection<? extends E> c)Creates anArrayBlockingQueuewith 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.ConcurrentLinkedDeque(Collection<? extends E> c)Constructs a deque initially containing the elements of the given collection, added in traversal order of the collection's iterator.ConcurrentLinkedQueue(Collection<? extends E> c)Creates aConcurrentLinkedQueueinitially containing the elements of the given collection, added in traversal order of the collection's iterator.ConcurrentSkipListSet(Collection<? extends E> c)Constructs a new set containing the elements in the specified collection, that orders its elements according to their natural ordering.CopyOnWriteArrayList(Collection<? extends E> collection)Creates a new instance containing the elements ofcollection.CopyOnWriteArraySet(Collection<? extends E> c)Creates a set containing all of the elements of the specified collection.DelayQueue(Collection<? extends E> c)Creates aDelayQueueinitially containing the elements of the given collection ofDelayedinstances.LinkedBlockingDeque(Collection<? extends E> c)Creates aLinkedBlockingDequewith a capacity ofInteger.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 aLinkedBlockingQueuewith a capacity ofInteger.MAX_VALUE, initially containing the elements of the given collection, added in traversal order of the collection's iterator.LinkedTransferQueue(Collection<? extends E> c)Creates aLinkedTransferQueueinitially containing the elements of the given collection, added in traversal order of the collection's iterator.PriorityBlockingQueue(Collection<? extends E> c)Creates aPriorityBlockingQueuecontaining the elements in the specified collection. -
Uses of Collection in java.util.concurrent.locks
Methods in java.util.concurrent.locks that return Collection Modifier and Type Method Description Collection<Thread>AbstractQueuedLongSynchronizer. getExclusiveQueuedThreads()Returns a collection containing threads that may be waiting to acquire in exclusive mode.Collection<Thread>AbstractQueuedSynchronizer. getExclusiveQueuedThreads()Returns a collection containing threads that may be waiting to acquire in exclusive mode.protected Collection<Thread>ReentrantReadWriteLock. getQueuedReaderThreads()Returns a collection containing threads that may be waiting to acquire the read lock.Collection<Thread>AbstractQueuedLongSynchronizer. getQueuedThreads()Returns a collection containing threads that may be waiting to acquire.Collection<Thread>AbstractQueuedSynchronizer. getQueuedThreads()Returns a collection containing threads that may be waiting to acquire.protected Collection<Thread>ReentrantLock. getQueuedThreads()Returns a collection containing threads that may be waiting to acquire this lock.protected Collection<Thread>ReentrantReadWriteLock. getQueuedThreads()Returns a collection containing threads that may be waiting to acquire either the read or write lock.protected Collection<Thread>ReentrantReadWriteLock. getQueuedWriterThreads()Returns a collection containing threads that may be waiting to acquire the write lock.Collection<Thread>AbstractQueuedLongSynchronizer. getSharedQueuedThreads()Returns a collection containing threads that may be waiting to acquire in shared mode.Collection<Thread>AbstractQueuedSynchronizer. getSharedQueuedThreads()Returns a collection containing threads that may be waiting to acquire in shared mode.protected Collection<Thread>AbstractQueuedLongSynchronizer.ConditionObject. getWaitingThreads()Returns a collection containing those threads that may be waiting on this Condition.Collection<Thread>AbstractQueuedLongSynchronizer. getWaitingThreads(AbstractQueuedLongSynchronizer.ConditionObject condition)Returns a collection containing those threads that may be waiting on the given condition associated with this synchronizer.protected Collection<Thread>AbstractQueuedSynchronizer.ConditionObject. getWaitingThreads()Returns a collection containing those threads that may be waiting on this Condition.Collection<Thread>AbstractQueuedSynchronizer. getWaitingThreads(AbstractQueuedSynchronizer.ConditionObject condition)Returns a collection containing those threads that may be waiting on the given condition associated with this synchronizer.protected Collection<Thread>ReentrantLock. getWaitingThreads(Condition condition)Returns a collection containing those threads that may be waiting on the given condition associated with this lock.protected Collection<Thread>ReentrantReadWriteLock. getWaitingThreads(Condition condition)Returns a collection containing those threads that may be waiting on the given condition associated with the write lock. -
Uses of Collection in java.util.jar
Methods in java.util.jar that return Collection Modifier and Type Method Description Collection<Object>Attributes. values()Returns a collection of all the values present in thisAttributes. -
Uses of Collection in org.apache.commons.logging.impl
Methods in org.apache.commons.logging.impl that return Collection Modifier and Type Method Description CollectionWeakHashtable. values() -
Uses of Collection in org.apache.harmony.security.asn1
Methods in org.apache.harmony.security.asn1 that return Collection Modifier and Type Method Description Collection<?>ASN1ValueCollection. getValues(Object object)Provides an object's values to be encoded Derived classes should override this method to provide encoding for a selected class of objects. -
Uses of Collection in org.apache.harmony.security.provider.cert
Methods in org.apache.harmony.security.provider.cert that return Collection Modifier and Type Method Description Collection<? extends Certificate>X509CertFactoryImpl. engineGenerateCertificates(InputStream inStream)Generates the collection of the certificates on the base of provided via input stream encodings.Collection<? extends CRL>X509CertFactoryImpl. engineGenerateCRLs(InputStream inStream)Collection<List<?>>X509CertImpl. getIssuerAlternativeNames()Collection<List<?>>X509CertImpl. getSubjectAlternativeNames() -
Uses of Collection in org.apache.harmony.security.x501
Methods in org.apache.harmony.security.x501 that return Collection Modifier and Type Method Description Collection<?>AttributeValue. getValues(ASN1Type type) -
Uses of Collection in org.apache.harmony.security.x509
Methods in org.apache.harmony.security.x509 that return Collection Modifier and Type Method Description Collection<List<?>>GeneralNames. getPairsList()Returns the collection of pairs: (Integer (tag), Object (name value))*Collection<List<?>>Extensions. valueOfIssuerAlternativeName()Returns the value of Issuer Alternative Name Extension (OID = 2.5.29.18).Collection<List<?>>Extensions. valueOfSubjectAlternativeName()Returns the value of Subject Alternative Name (OID = 2.5.29.17). -
Uses of Collection in org.apache.http.client.params
Methods in org.apache.http.client.params with parameters of type Collection Modifier and Type Method Description voidClientParamBean. setDefaultHeaders(Collection<Header> headers) -
Uses of Collection in org.apache.http.cookie.params
Methods in org.apache.http.cookie.params with parameters of type Collection Modifier and Type Method Description voidCookieSpecParamBean. setDatePatterns(Collection<String> patterns) -
Uses of Collection in org.apache.http.impl.cookie
Methods in org.apache.http.impl.cookie that return Collection Modifier and Type Method Description protected Collection<CookieAttributeHandler>AbstractCookieSpec. getAttribHandlers() -
Uses of Collection in org.bouncycastle.cert
Methods in org.bouncycastle.cert that return Collection Modifier and Type Method Description CollectionX509CRLHolder. getRevokedCertificates()Return a collection of X509CRLEntryHolder objects, giving the details of the revoked certificates that appear on this CRL. -
Uses of Collection in org.bouncycastle.cert.jcajce
Constructors in org.bouncycastle.cert.jcajce with parameters of type Collection Constructor Description JcaCertStore(Collection collection)Basic constructor. -
Uses of Collection in org.bouncycastle.cms
Methods in org.bouncycastle.cms that return Collection Modifier and Type Method Description CollectionSignerInformationStore. getSigners()Return all signers in the collectionCollectionSignerInformationStore. getSigners(SignerId selector)Return possible empty collection with signers matching the passed in SignerIdConstructors in org.bouncycastle.cms with parameters of type Collection Constructor Description SignerInformationStore(Collection signerInfos) -
Uses of Collection in org.bouncycastle.jcajce.provider.asymmetric.x509
Methods in org.bouncycastle.jcajce.provider.asymmetric.x509 that return Collection Modifier and Type Method Description CollectionCertificateFactory. engineGenerateCertificates(InputStream inStream)Returns a (possibly empty) collection view of the certificates read from the given input stream inStream.CollectionCertificateFactory. engineGenerateCRLs(InputStream inStream)Returns a (possibly empty) collection view of the CRLs read from the given input stream inStream. -
Uses of Collection in org.bouncycastle.jce.provider
Methods in org.bouncycastle.jce.provider that return Collection Modifier and Type Method Description CollectionCertStoreCollectionSpi. engineGetCertificates(CertSelector selector)CollectionCertStoreCollectionSpi. engineGetCRLs(CRLSelector selector)protected static CollectionCertPathValidatorUtilities. findCertificates(X509CertStoreSelector certSelect, List certStores)Return a Collection of all certificates or attribute certificates found in the X509Store's that are matching the certSelect criteriums.protected static CollectionCertPathValidatorUtilities. findIssuerCerts(X509Certificate cert, ExtendedPKIXBuilderParameters pkixParams)Find the issuer certificates of a given certificate.CollectionX509CertificateObject. getIssuerAlternativeNames()CollectionX509CertificateObject. getSubjectAlternativeNames()Methods in org.bouncycastle.jce.provider with parameters of type Collection Modifier and Type Method Description protected static voidCertPathValidatorUtilities. getCRLIssuersFromDistributionPoint(DistributionPoint dp, Collection issuerPrincipals, X509CRLSelector selector, ExtendedPKIXParameters pkixParams)Add the CRL issuers from the cRLIssuer field of the distribution point or from the certificate if not given to the issuer criterion of theselector. -
Uses of Collection in org.bouncycastle.util
Methods in org.bouncycastle.util that return Collection Modifier and Type Method Description CollectionCollectionStore. getMatches(Selector selector)Return the matches in the collection for the passed in selector.CollectionStore. getMatches(Selector selector)Constructors in org.bouncycastle.util with parameters of type Collection Constructor Description CollectionStore(Collection collection)Basic constructor. -
Uses of Collection in org.bouncycastle.x509
Methods in org.bouncycastle.x509 that return Collection Modifier and Type Method Description abstract CollectionX509StoreSpi. engineGetMatches(Selector selector)CollectionX509CollectionStoreParameters. getCollection()Returns a copy of theCollection.CollectionX509Store. getMatches(Selector selector)Methods in org.bouncycastle.x509 with parameters of type Collection Modifier and Type Method Description abstract voidPKIXAttrCertChecker. check(X509AttributeCertificate attrCert, CertPath certPath, CertPath holderCertPath, Collection unresolvedCritExts)Performs checks on the specified attribute certificate.Constructors in org.bouncycastle.x509 with parameters of type Collection Constructor Description X509CollectionStoreParameters(Collection collection)Constructor. -
Uses of Collection in org.bouncycastle.x509.extension
Methods in org.bouncycastle.x509.extension that return Collection Modifier and Type Method Description static CollectionX509ExtensionUtil. getIssuerAlternativeNames(X509Certificate cert)static CollectionX509ExtensionUtil. getSubjectAlternativeNames(X509Certificate cert) -
Uses of Collection in org.conscrypt
Methods in org.conscrypt that return Collection Modifier and Type Method Description Collection<? extends Certificate>OpenSSLX509CertificateFactory. engineGenerateCertificates(InputStream inStream)Collection<? extends CRL>OpenSSLX509CertificateFactory. engineGenerateCRLs(InputStream inStream)Collection<List<?>>OpenSSLX509Certificate. getIssuerAlternativeNames()Collection<List<?>>OpenSSLX509Certificate. getSubjectAlternativeNames() -
Uses of Collection in org.json
Constructors in org.json with parameters of type Collection Constructor Description JSONArray(Collection copyFrom)Creates a newJSONArrayby copying all values from the given collection.