Skip to content

Instantly share code, notes, and snippets.

@schwarzeszeux
schwarzeszeux / Fernflower.java
Created April 11, 2012 10:38
JavaMapper Decompiler
package Enums;
enum Operation {
PLUS("PLUS", 0, (Operation)null) {
double eval(double x, double y) {
return x + y;
}
},
@schwarzeszeux
schwarzeszeux / Fernflower.java
Created April 9, 2012 22:35
Enum decompilation
package Enums;
public enum TestEnum {
WHITE("WHITE", 0),
BLACK("BLACK", 1),
RED("RED", 2),
YELLOW("YELLOW", 3),
BLUE("BLUE", 4);