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 | ||||
5 | * | ||||
6 | */ | ||||
7 | public enum Kind { | ||||
8 | ROOT, CLASS, FIELD, CONSTRUCTOR, METHOD, UNKNOWN; | ||||
9 | |||||
10 | public String toString() { | ||||
11 | return super.toString().toLowerCase(); | ||||
12 | } | ||||
13 | } |