blob: 42626f19c93dd01939aa214bc5a87b119c17165a [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();
}
}