Uses of Annotation Interface
java.lang.SafeVarargs
Packages that use SafeVarargs
Package
Description
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.
Classes to support functional-style operations on streams of elements, such
 as map-reduce transformations on collections.
Provides a set of "lightweight" (all-Java language) components
 that, to the maximum degree possible, work the same on all platforms.
- 
Uses of SafeVarargs in java.utilMethods in java.util with annotations of type SafeVarargsModifier and TypeMethodDescriptionstatic <T> booleanCollections.addAll(Collection<? super T> c, T... elements)Adds all of the specified elements to the specified collection.static <T> List<T>Arrays.asList(T... a)Returns a fixed-size list backed by the specified array.EnumSet.of(E first, E... rest)Creates an enum set initially containing the specified elements.static <E> List<E>List.of(E... elements)Returns an unmodifiable list containing an arbitrary number of elements.static <E> Set<E>Set.of(E... elements)Returns an unmodifiable set containing an arbitrary number of elements.static <K, V> Map<K,V>Returns an unmodifiable map containing keys and values extracted from the given entries.
- 
Uses of SafeVarargs in java.util.streamMethods in java.util.stream with annotations of type SafeVarargs
- 
Uses of SafeVarargs in javax.swingMethods in javax.swing with annotations of type SafeVarargsModifier and TypeMethodDescriptionprotected voidSends data chunks to theSwingWorker.process(java.util.List<V>)method.