Java Platform 1.2
Beta 4

Uses of Interface
java.util.Set

Packages that use Set
java.security.cert Provides classes and interfaces for parsing and managing certificates.  
java.text Provides classes and interfaces for handling text, dates, numbers, and messages in a manner independent of natural languages.  
java.util Provides useful utilities for data structures, date, time, internationalization, events (root interfaces), a simple string tokenizer, a random-number generator, observers, properties and exceptions.  
java.util.jar Provides classes for creating and reading JAR files.  
 

Uses of Set in java.security.cert
 

Methods in java.security.cert that return Set
abstract  Set X509CRL.getRevokedCertificates()
          Gets all the entries from this CRL. This returns a Set of X509CRLEntry objects.
 Set X509Extension.getCriticalExtensionOIDs()
          Gets a Set of the OID strings for the extension(s) marked CRITICAL in the certificate/CRL managed by the object implementing this interface.
 Set X509Extension.getNonCriticalExtensionOIDs()
          Gets a Set of the OID strings for the extension(s) marked NON-CRITICAL in the certificate/CRL managed by the object implementing this interface.
 

Uses of Set in java.text
 

Methods in java.text that return Set
 Set AttributedCharacterIterator.getAllAttributeKeys()
          Returns the keys of all attributes defined on the iterator's text range.
 

Methods in java.text with parameters of type Set
 int AttributedCharacterIterator.getRunStart(Set attributes)
          Returns the index of the first character of the run with respect to the given attributes containing the current character.
 int AttributedCharacterIterator.getRunLimit(Set attributes)
          Returns the index of the first character following the run with respect to the given attributes containing the current character.
 

Uses of Set in java.util
 

Subinterfaces of Set in java.util
  SortedSet
          A Set that further guarantees that its iterator will traverse the Set in ascending element order, sorted according to the natural ordering of its elements (see Comparable), or by a Comparator provided at SortedSet creation time.
 

Classes in java.util that implement Set
  AbstractSet
          This class provides a skeletal implementation of the Set interface to minimize the effort required to implement this interface.
  HashSet
          This class implements the Set interface, backed by a hash table (actually a HashMap).
  TreeSet
          This class implements the TreeSet interface, backed by a TreeMap.
 

Fields in java.util declared as Set
static Set Collections.EMPTY_SET
          The empty Set (immutable).
 

Methods in java.util that return Set
 Set Hashtable.keySet()
          Returns a Set view of the keys contained in this Hashtable.
 Set Hashtable.entrySet()
          Returns a Set view of the entries contained in this Hashtable.
 Set AbstractMap.keySet()
          Returns a Set view of the keys contained in this Map.
abstract  Set AbstractMap.entrySet()
          Returns a Set view of the mappings contained in this Map.
 Set WeakHashMap.entrySet()
          Return a Set view of the mappings in this map.
 Set HashMap.keySet()
          Returns a Set view of the keys contained in this HashMap.
 Set HashMap.entrySet()
          Returns a Collection view of the mappings contained in this HashMap.
static Set Collections.unmodifiableSet(Set s)
          Returns an unmodifiable view of the specified Set.
static Set Collections.synchronizedSet(Set s)
          Returns a synchronized (thread-safe) Set backed by the specified Set.
static Set Collections.singleton(Object o)
          Returns an immutable Set containing only the specified Object.
 Set Map.keySet()
          Returns a Set view of the keys contained in this Map.
 Set Map.entrySet()
          Returns a Set view of the mappings contained in this Map.
 Set TreeMap.keySet()
          Returns a Set view of the keys contained in this TreeMap.
 Set TreeMap.entrySet()
          Returns a Set view of the mappings contained in this Map.
 

Methods in java.util with parameters of type Set
static Set Collections.unmodifiableSet(Set s)
          Returns an unmodifiable view of the specified Set.
static Set Collections.synchronizedSet(Set s)
          Returns a synchronized (thread-safe) Set backed by the specified Set.
 

Uses of Set in java.util.jar
 

Methods in java.util.jar that return Set
 Set Attributes.keySet()
          Returns a Set view of the attribute names (keys) contained in this Map.
 Set Attributes.entrySet()
          Returns a Collection view of the attribute name-value mappings contained in this Map.
 


Java Platform 1.2
Beta 4

Submit a bug or feature
Submit comments/suggestions about new javadoc look
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.
This documentation was generated with a post-Beta4 version of Javadoc.