Stuart McCulloch | bb01437 | 2012-06-07 21:57:32 +0000 | [diff] [blame] | 1 | package aQute.bnd.compatibility; |
2 | |||||
3 | /** | ||||
4 | * The kind of thing we scope | ||||
Stuart McCulloch | bb01437 | 2012-06-07 21:57:32 +0000 | [diff] [blame] | 5 | */ |
6 | public enum Kind { | ||||
7 | ROOT, CLASS, FIELD, CONSTRUCTOR, METHOD, UNKNOWN; | ||||
8 | |||||
9 | public String toString() { | ||||
10 | return super.toString().toLowerCase(); | ||||
11 | } | ||||
12 | } |