Home | History | Annotate | Download | only in collect

Lines Matching defs:complementOf

433    * method has the same behavior as {@link EnumSet#complementOf}. Otherwise,
436 * {@link #complementOf(Collection, Class)} instead of this method.
445 public static <E extends Enum<E>> EnumSet<E> complementOf(
448 return EnumSet.complementOf((EnumSet<E>) collection);
459 * {@link EnumSet#complementOf}, but can act on any input collection, as long
468 public static <E extends Enum<E>> EnumSet<E> complementOf(
472 ? EnumSet.complementOf((EnumSet<E>) collection)