Files
tustu/app/ak/Enum.java
2026-01-11 20:30:56 +00:00

29 lines
378 B
Java

package ak;
public enum Enum {
a(1),
b(1),
c(2),
d(2),
e(4),
f(8),
g(2),
h(8),
i(4);
int j;
Z(int paramInt1) {
this.j = paramInt1;
}
public int a() {
return this.j;
}
}
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/ak/Z.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/