We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d221cac commit 08bebe5Copy full SHA for 08bebe5
1 file changed
src/main/java/com/unity/lookup/BaseLookup.java
@@ -29,13 +29,15 @@ public abstract class BaseLookup<T extends Element> {
29
protected final Map<ElementKind, String> elementKindLookup = new HashMap<>() {{
30
put(ElementKind.PACKAGE, "Namespace");
31
put(ElementKind.CLASS, "Class");
32
+ put(ElementKind.RECORD, "Class");
33
put(ElementKind.ENUM, "Enum");
34
put(ElementKind.ENUM_CONSTANT, "Field");
35
put(ElementKind.INTERFACE, "Interface");
36
put(ElementKind.ANNOTATION_TYPE, "Interface");
37
put(ElementKind.CONSTRUCTOR, "Constructor");
38
put(ElementKind.METHOD, "Method");
39
put(ElementKind.FIELD, "Field");
40
+ put(ElementKind.RECORD_COMPONENT, "Field");
41
}};
42
43
protected Map<T, ExtendedMetadataFileItem> map = new HashMap<>();
0 commit comments