Uses of Interface
org.djutils.immutablecollections.ImmutableSet
Package
Description
Contains a set of immutable collection interfaces and wrapper implementations.
Classes to assist in logging.
-
Uses of ImmutableSet in org.djutils.immutablecollections
Modifier and TypeInterfaceDescriptioninterface
AImmutableSortedSet
extended with navigation methods reporting closest matches for given search targets.interface
A SortedSet interface without the methods that can change it.Modifier and TypeClassDescriptionclass
An abstract base class for an immutable wrapper for a Set.class
An immutable wrapper for a HashSet.class
An immutable wrapper for a LinkedHashSet.class
An immutable wrapper for a TreeSet.Modifier and TypeMethodDescriptionstatic <T> ImmutableSet<T>
ImmutableCollections.emptyImmutableSet()
Return an immutable empty set.ImmutableHashMap.entrySet()
ImmutableLinkedHashMap.entrySet()
ImmutableMap.entrySet()
Returns aSet
view of the entries contained in this map.final ImmutableSet<K>
ImmutableHashMap.keySet()
final ImmutableSet<K>
ImmutableLinkedHashMap.keySet()
ImmutableMap.keySet()
Returns aSet
view of the keys contained in this map.static <E> ImmutableSet<E>
ImmutableSet.of()
Return an empty ImmutableSet, backed by a LinkedHashSet.static <E> ImmutableSet<E>
ImmutableSet.of
(E v1) Return an ImmutableSet with 1 entry, backed by a LinkedHashSet.static <E> ImmutableSet<E>
ImmutableSet.of
(E v1, E v2) Return an ImmutableSet with 2 entries, backed by a LinkedHashSet.static <E> ImmutableSet<E>
ImmutableSet.of
(E v1, E v2, E v3) Return an ImmutableSet with 3 entries, backed by a LinkedHashSet.static <E> ImmutableSet<E>
ImmutableSet.of
(E v1, E v2, E v3, E v4) Return an ImmutableSet with 4 entries, backed by a LinkedHashSet.static <E> ImmutableSet<E>
ImmutableSet.of
(E v1, E v2, E v3, E v4, E v5, E... vn) Return an ImmutableSet with 5 or more entries, backed by a LinkedHashSet. -
Uses of ImmutableSet in org.djutils.logger
Modifier and TypeMethodDescriptionstatic ImmutableSet<LogCategory>
CategoryLogger.getLogCategories()
Return the set of all log categories (cached immutable copy).static ImmutableSet<org.pmw.tinylog.writers.Writer>
CategoryLogger.getWriters()
Return the set of all registered writers.