Uses of Interface
org.djutils.immutablecollections.ImmutableSet
Package | Description |
---|---|
org.djutils.immutablecollections |
Contains a set of immutable collection interfaces and wrapper implementations.
|
org.djutils.logger |
Classes to assist in logging.
|
-
Uses of ImmutableSet in org.djutils.immutablecollections
Subinterfaces of ImmutableSet in org.djutils.immutablecollections Modifier and Type Interface Description interface
ImmutableNavigableSet<E>
AImmutableSortedSet
extended with navigation methods reporting closest matches for given search targets.interface
ImmutableSortedSet<E>
A SortedSet interface without the methods that can change it.Classes in org.djutils.immutablecollections that implement ImmutableSet Modifier and Type Class Description class
ImmutableAbstractSet<E>
An abstract base class for an immutable wrapper for a Set.class
ImmutableHashSet<E>
An immutable wrapper for a HashSet.class
ImmutableLinkedHashSet<E>
An immutable wrapper for a LinkedHashSet.class
ImmutableTreeSet<E>
An immutable wrapper for a TreeSet.Methods in org.djutils.immutablecollections that return ImmutableSet Modifier and Type Method Description static <T> ImmutableSet<T>
ImmutableCollections. emptyImmutableSet()
Return an immutable empty set.ImmutableSet<ImmutableMap.ImmutableEntry<K,V>>
ImmutableHashMap. entrySet()
Returns aSet
view of the entries contained in this map.ImmutableSet<ImmutableMap.ImmutableEntry<K,V>>
ImmutableLinkedHashMap. entrySet()
Returns aSet
view of the entries contained in this map.ImmutableSet<ImmutableMap.ImmutableEntry<K,V>>
ImmutableMap. entrySet()
Returns aSet
view of the entries contained in this map.ImmutableSet<K>
ImmutableHashMap. keySet()
Returns aSet
view of the keys contained in this map.ImmutableSet<K>
ImmutableLinkedHashMap. keySet()
Returns aSet
view of the keys contained in this map.ImmutableSet<K>
ImmutableMap. keySet()
Returns aSet
view of the keys contained in this map. -
Uses of ImmutableSet in org.djutils.logger
Methods in org.djutils.logger that return ImmutableSet Modifier and Type Method Description static ImmutableSet<LogCategory>
CategoryLogger. getLogCategories()
Return the set of all log categories (cached immutable copy).static ImmutableSet<Writer>
CategoryLogger. getWriters()
Return the set of all registered writers.