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

uk.ac.manchester.cs.chainsaw.FastSetFactory Maven / Gradle / Ivy

There is a newer version: 5.5.1
Show newest version
package uk.ac.manchester.cs.chainsaw;

import java.io.Serializable;

/**
 * factory for int sets
 */
public class FastSetFactory implements Serializable {

    private FastSetFactory() {
    }

    /**
     * @return int set instance
     */
    public static FastSet create() {
        return new FastSetSimple();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy