Stuart McCulloch | 3fdcd85 | 2011-10-17 10:31:43 +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 | } |