blob: 2e9f5cd5949f2fa69fd1fdefe2a42b69075fd3d2 [file] [log] [blame]
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();
}
}