Files
kotlin-fork/j2k/tests/testData/ast/enum/class/fieldsWithPrimaryPrivateConstructor.jav
T
2012-01-27 18:33:52 +04:00

12 lines
179 B
Java

enum Color {
WHITE(21), BLACK(22), RED(23), YELLOW(24), BLUE(25);
private int code;
private Color(int c) {
code = c;
}
public int getCode() {
return code;
}