MCPcopy Create free account
hub / github.com/LFYSec/MScan / EnumElement

Class EnumElement

src/main/java/pascal/taie/language/annotation/EnumElement.java:25–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23package pascal.taie.language.annotation;
24
25public record EnumElement(
26 // string representation of the enum type
27 String type,
28 // name of the enum constant
29 String name)
30 implements Element {
31
32 @Override
33 public String toString() {
34 return type + "." + name;
35 }
36}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected