Lines Matching defs:complementOf
333 * method has the same behavior as {@link EnumSet#complementOf}. Otherwise,
336 * {@link #complementOf(Collection, Class)} instead of this method.
345 public static <E extends Enum<E>> EnumSet<E> complementOf(
348 return EnumSet.complementOf((EnumSet<E>) collection);
359 * {@link EnumSet#complementOf}, but can act on any input collection, as long
368 public static <E extends Enum<E>> EnumSet<E> complementOf(
372 ? EnumSet.complementOf((EnumSet<E>) collection)