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

aQute.p2.api.Classifier Maven / Gradle / Ivy

There is a newer version: 7.1.0
Show newest version
package aQute.p2.api;

public enum Classifier {
	BUNDLE("osgi.bundle"),
	FEATURE("org.eclipse.update.feature");

	public final String name;

	private Classifier(String name) {
		this.name = name;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy