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

org.umlg.runtime.util.UmlgCollections Maven / Gradle / Ivy

There is a newer version: 2.0.15
Show newest version
package org.umlg.runtime.util;

import org.umlg.runtime.collection.*;
import org.umlg.runtime.collection.UmlgSet;
import org.umlg.runtime.collection.UmlgSequence;
import org.umlg.runtime.collection.memory.UmlgMemoryBag;
import org.umlg.runtime.collection.memory.UmlgMemoryOrderedSet;
import org.umlg.runtime.collection.memory.UmlgMemorySequence;
import org.umlg.runtime.collection.memory.UmlgMemorySet;

public class UmlgCollections {

	public static final  UmlgSet emptySet() {
		return new UmlgMemorySet();
	}

	public static final  UmlgSequence emptySequence() {
		return new UmlgMemorySequence();
	}

	public static final  UmlgBag emptyBag() {
		return new UmlgMemoryBag();
	}

	public static final  UmlgOrderedSet emptyOrderedSet() {
		return new UmlgMemoryOrderedSet();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy