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

aQute.bnd.compatibility.Kind Maven / Gradle / Ivy

The newest version!
package aQute.bnd.compatibility;

/**
 * The kind of thing we scope
 */
public enum Kind {
	ROOT,
	CLASS,
	FIELD,
	CONSTRUCTOR,
	METHOD,
	UNKNOWN;

	@Override
	public String toString() {
		return super.toString().toLowerCase();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy