Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Uses of Interface
java.util.Set
Packages that use Set
Provides classes that are fundamental to the design of the Java programming language.
Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.
Utility classes commonly useful in concurrent programming.
The Doclet API provides an environment which, in conjunction with the Language Model API and Compiler Tree API, allows clients to inspect the source-level structures of programs and libraries, including API comments embedded in the source.
Uses of Set in java.lang
Methods in java.lang that return Set
Module.getPackages()
Returns the set of package names for the packages in this module.
ModuleLayer.modules()
Returns an unmodifiable set of the modules in this layer.
Methods in java.lang with parameters of type Set
StackWalker.getInstance(Set<StackWalker.Option> options)
Returns a StackWalker instance with the given options specifying the stack frame information it can access.
StackWalker.getInstance(Set<StackWalker.Option> options, int estimateDepth)
Returns a StackWalker instance with the given options specifying the stack frame information it can access.
Uses of Set in java.util
Subinterfaces of Set in java.util
interface
A SortedSet extended with navigation methods reporting closest matches for given search targets.
interface
A Set that further provides a total ordering on its elements.
Classes in java.util that implement Set
abstract class
This class provides a skeletal implementation of the Set interface to minimize the effort required to implement this interface.
abstract class
EnumSet<E extends Enum<E>>
A specialized Set implementation for use with enum types.
class
This class implements the Set interface, backed by a hash table (actually a HashMap instance).
class
Hash table and linked list implementation of the Set interface, with predictable iteration order.
class
A NavigableSet implementation based on a TreeMap.
Fields in java.util declared as Set
static final Set
Collections.EMPTY_SET
The empty set (immutable).
Methods in java.util that return Set
abstract Set<Map.Entry<K,V>>
AbstractMap.entrySet()
Returns a Set view of the mappings contained in this map.
AbstractMap.keySet()
Returns a Set view of the keys contained in this map.
static Set<String>
Returns an unmodifiable Set containing all calendar types supported by Calendar in the runtime environment.
static <ESet<E>
Collections.checkedSet(Set<E> s, Class<E> type)
Returns a dynamically typesafe view of the specified set.
static final <TSet<T>
Collections.emptySet()
Returns an empty set (immutable).
static <ESet<E>
Collections.newSetFromMap(Map<E,Boolean> map)
Returns a set backed by the specified map.
static <TSet<T>
Collections.singleton(T o)
Returns an immutable set containing only the specified object.
static <TSet<T>
Collections.synchronizedSet(Set<T> s)
Returns a synchronized (thread-safe) set backed by the specified set.
static <TSet<T>
Collections.unmodifiableSet(Set<? extends T> s)
Returns an unmodifiable view of the specified set.
static Set<Currency>
Gets the set of available currencies.
EnumMap.entrySet()
Returns a Set view of the mappings contained in this map.
EnumMap.keySet()
Returns a Set view of the keys contained in this map.
HashMap.entrySet()
Returns a Set view of the mappings contained in this map.
HashMap.keySet()
Returns a Set view of the keys contained in this map.
Hashtable.entrySet()
Returns a Set view of the mappings contained in this map.
Hashtable.keySet()
Returns a Set view of the keys contained in this map.
IdentityHashMap.entrySet()
Returns a Set view of the mappings contained in this map.
IdentityHashMap.keySet()
Returns an identity-based set view of the keys contained in this map.
LinkedHashMap.entrySet()
Returns a Set view of the mappings contained in this map.
LinkedHashMap.keySet()
Returns a Set view of the keys contained in this map.
protected Set<String>
ListResourceBundle.handleKeySet()
Returns a Set of the keys contained only in this ResourceBundle.
Returns the set of extension keys associated with this locale, or the empty set if it has no extensions.
static Set<String>
Returns a Set of ISO3166 country codes for the specified type.
Returns the set of unicode locale attributes associated with this locale, or the empty set if it has no attributes.
Returns the set of Unicode locale keys defined by this locale, or the empty set if this locale has none.
Map.entrySet()
Returns a Set view of the mappings contained in this map.
Map.keySet()
Returns a Set view of the keys contained in this map.
Properties.entrySet()
Returns a Set view of the mappings contained in this map.
Properties.keySet()
Returns a Set view of the keys contained in this map.
Properties.stringPropertyNames()
Returns an unmodifiable set of keys from this property list where the key and its corresponding value are strings, including distinct keys in the default property list if a key of the same name has not already been found from the main properties list.
protected Set<String>
PropertyResourceBundle.handleKeySet()
Returns a Set of the keys contained only in this ResourceBundle.
protected Set<String>
ResourceBundle.handleKeySet()
Returns a Set of the keys contained only in this ResourceBundle.
ResourceBundle.keySet()
Returns a Set of all keys contained in this ResourceBundle and its parent bundles.
static <ESet<E>
Set.copyOf(Collection<? extends E> coll)
Returns an unmodifiable Set containing the elements of the given Collection.
static <ESet<E>
Set.of()
Returns an unmodifiable set containing zero elements.
static <ESet<E>
Set.of(E e1)
Returns an unmodifiable set containing one element.
static <ESet<E>
Set.of(E e1, E e2)
Returns an unmodifiable set containing two elements.
static <ESet<E>
Set.of(E e1, E e2, E e3)
Returns an unmodifiable set containing three elements.
static <ESet<E>
Set.of(E e1, E e2, E e3, E e4)
Returns an unmodifiable set containing four elements.
static <ESet<E>
Set.of(E e1, E e2, E e3, E e4, E e5)
Returns an unmodifiable set containing five elements.
static <ESet<E>
Set.of(E e1, E e2, E e3, E e4, E e5, E e6)
Returns an unmodifiable set containing six elements.
static <ESet<E>
Set.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7)
Returns an unmodifiable set containing seven elements.
static <ESet<E>
Set.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8)
Returns an unmodifiable set containing eight elements.
static <ESet<E>
Set.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9)
Returns an unmodifiable set containing nine elements.
static <ESet<E>
Set.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10)
Returns an unmodifiable set containing ten elements.
static <ESet<E>
Set.of(E... elements)
Returns an unmodifiable set containing an arbitrary number of elements.
SortedMap.entrySet()
Returns a Set view of the mappings contained in this map.
SortedMap.keySet()
Returns a Set view of the keys contained in this map.
TreeMap.entrySet()
Returns a Set view of the mappings contained in this map.
TreeMap.keySet()
Returns a Set view of the keys contained in this map.
WeakHashMap.entrySet()
Returns a Set view of the mappings contained in this map.
WeakHashMap.keySet()
Returns a Set view of the keys contained in this map.
Methods in java.util with parameters of type Set
static <ESet<E>
Collections.checkedSet(Set<E> s, Class<E> type)
Returns a dynamically typesafe view of the specified set.
static <TSet<T>
Collections.synchronizedSet(Set<T> s)
Returns a synchronized (thread-safe) set backed by the specified set.
static <TSet<T>
Collections.unmodifiableSet(Set<? extends T> s)
Returns an unmodifiable view of the specified set.
Classes in java.util.concurrent that implement Set
static class
A view of a ConcurrentHashMap as a Set of keys, in which additions may optionally be enabled by mapping to a common value.
class
A scalable concurrent NavigableSet implementation based on a ConcurrentSkipListMap.
class
A Set that uses an internal CopyOnWriteArrayList for all of its operations.
Methods in java.util.concurrent that return Set
ConcurrentHashMap.entrySet()
Returns a Set view of the mappings contained in this map.
ConcurrentSkipListMap.entrySet()
Returns a Set view of the mappings contained in this map.
Methods in jdk.javadoc.doclet that return Set
Set<? extends Doclet.Option>
Returns all the supported options.
Set<? extends Element>
DocletEnvironment.getIncludedElements()
Returns the module, package and type elements that should be included in the documentation.
Set<? extends Element>
DocletEnvironment.getSpecifiedElements()
Returns the elements specified when the tool is invoked.
Set<? extends Doclet.Option>
StandardDoclet.getSupportedOptions()
Returns all the supported options.
Returns the set of supported locations for block tags.

 Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Java API documentation generated with FlexDoc/Javadoc 2.0 using JavadocClassic 3.0 template set.
FlexDoc/Javadoc is a template-driven programming tool for rapid development of any Javadoc-based Java API documentation generators (i.e. doclets). If you need to customize your Javadoc without writing a full-blown doclet from scratch, FlexDoc/Javadoc may be the only tool able to help you! Find out more at www.flexdoc.xyz