Uses of Interface
org.djutils.immutablecollections.ImmutableSet
-
Packages that use 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 interfaceImmutableNavigableSet<E>AImmutableSortedSetextended with navigation methods reporting closest matches for given search targets.interfaceImmutableSortedSet<E>A SortedSet interface without the methods that can change it.Classes in org.djutils.immutablecollections that implement ImmutableSet Modifier and Type Class Description classImmutableAbstractSet<E>An abstract base class for an immutable wrapper for a Set.classImmutableHashSet<E>An immutable wrapper for a HashSet.classImmutableLinkedHashSet<E>An immutable wrapper for a LinkedHashSet.classImmutableTreeSet<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 aSetview of the entries contained in this map.ImmutableSet<ImmutableMap.ImmutableEntry<K,V>>ImmutableLinkedHashMap. entrySet()Returns aSetview of the entries contained in this map.ImmutableSet<ImmutableMap.ImmutableEntry<K,V>>ImmutableMap. entrySet()Returns aSetview of the entries contained in this map.ImmutableSet<K>ImmutableHashMap. keySet()Returns aSetview of the keys contained in this map.ImmutableSet<K>ImmutableLinkedHashMap. keySet()Returns aSetview of the keys contained in this map.ImmutableSet<K>ImmutableMap. keySet()Returns aSetview 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
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.
-