MCPcopy Create free account
hub / github.com/QuiltMC/chasm / ExampleEnum

Enum ExampleEnum

chasm/src/testData/java/other/ExampleEnum.java:3–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package other;
2
3public enum ExampleEnum {
4 A(1), B(2) {
5 public String toString() {
6 return "b";
7 }
8 };
9
10 private final int value;
11
12 ExampleEnum(int value) {
13 this.value = value;
14 }
15}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected