blob: 42626f19c93dd01939aa214bc5a87b119c17165a [file] [log] [blame]
Stuart McCullochbb014372012-06-07 21:57:32 +00001package aQute.bnd.compatibility;
2
3/**
4 * The kind of thing we scope
Stuart McCullochbb014372012-06-07 21:57:32 +00005 */
6public enum Kind {
7 ROOT, CLASS, FIELD, CONSTRUCTOR, METHOD, UNKNOWN;
8
9 public String toString() {
10 return super.toString().toLowerCase();
11 }
12}