Gitiles
Code Review
Sign In
gerrit.onosproject.org
/
onos-felix
/
b3d699f5c2c022eae4db9dee752f86b4bc6646e6
/
.
/
bundleplugin
/
src
/
main
/
java
/
aQute
/
bnd
/
compatibility
/
Kind.java
blob: 1e840300cd7e0da1e70472c9eaca3fb67efa8c9f [
file
] [
log
] [
blame
]
package
aQute
.
bnd
.
compatibility
;
/**
* The kind of thing we scope
*
*/
public
enum
Kind
{
ROOT
,
CLASS
,
FIELD
,
CONSTRUCTOR
,
METHOD
,
UNKNOWN
;
public
String
toString
()
{
return
super
.
toString
().
toLowerCase
();
}
}