All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.javersion.util.MutableSet Maven / Gradle / Ivy

The newest version!
package org.javersion.util;

import java.util.Set;

import javax.annotation.concurrent.NotThreadSafe;

@NotThreadSafe
public interface MutableSet extends Set {

    PersistentSet toPersistentSet();

    /**
     * NOTE: addAll(Iterable<E>) complains about ambiguous method on the usage side e.g. when called with a Set.
     *
     * @param iterable
     * @return
     */
    boolean addAllFrom(Iterable iterable);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy