blob: 1e840300cd7e0da1e70472c9eaca3fb67efa8c9f [file] [log] [blame]
Stuart McCulloch26e7a5a2011-10-17 10:31:43 +00001package aQute.bnd.compatibility;
2
3/**
4 * The kind of thing we scope
5 *
6 */
7public enum Kind {
8 ROOT, CLASS, FIELD, CONSTRUCTOR, METHOD, UNKNOWN;
9
10 public String toString() {
11 return super.toString().toLowerCase();
12 }
13}