Uses of Annotation Interface
java.lang.SafeVarargs

Packages that useSafeVarargs
Package
Description
java.util
Contains the collections framework, some internationalization support classes,a service loader, properties, random number generation, string parsingand scanning classes, base64 encoding and decoding, a bit array, andseveral miscellaneous utility classes.
java.util.stream
Classes to support functional-style operations on streams of elements, suchas map-reduce transformations on collections.
javax.swing
Provides a set of "lightweight" (all-Java language) componentsthat, to the maximum degree possible, work the same on all platforms.
  • Uses ofSafeVarargs injava.util

    Methods injava.util with annotations of typeSafeVarargs
    Modifier and Type
    Method
    Description
    static <T> boolean
    Collections.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.
    static <E extendsEnum<E>>
    EnumSet<E>
    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>
    Map.ofEntries(Map.Entry<? extends K, ? extends V>... entries)
    Returns an unmodifiable map containing keys and values extracted from the given entries.
  • Uses ofSafeVarargs injava.util.stream

    Methods injava.util.stream with annotations of typeSafeVarargs
    Modifier and Type
    Method
    Description
    static <T> Stream<T>
    Stream.of(T... values)
    Returns a sequential ordered stream whose elements are the specified values.
  • Uses ofSafeVarargs injavax.swing

    Methods injavax.swing with annotations of typeSafeVarargs
    Modifier and Type
    Method
    Description
    protected final void
    SwingWorker.publish(V... chunks)
    Sends data chunks to theSwingWorker.process(List) method.