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