blob: 1e840300cd7e0da1e70472c9eaca3fb67efa8c9f [file] [log] [blame]
package aQute.bnd.compatibility;
/**
* The kind of thing we scope
*
*/
public enum Kind {
ROOT, CLASS, FIELD, CONSTRUCTOR, METHOD, UNKNOWN;
public String toString() {
return super.toString().toLowerCase();
}
}