Searched defs:e3 (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DEnumSet.java253 * @param e3 another element that this set is to contain initially
257 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3) { argument
261 result.add(e3);
277 * @param e3 another element that this set is to contain initially
282 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3, E e4) { argument
286 result.add(e3);
303 * @param e3 another element that this set is to contain initially
309 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3, E e4, argument
315 result.add(e3);

Completed in 37 milliseconds