Skip to content

Instantly share code, notes, and snippets.

@skRyo
skRyo / gist:3217011
Created July 31, 2012 13:22 — forked from giuniu/gist:3208264
教えてエライ人2
interface Debugprintable {
enum ErrStatus {
NO_ERROR(0), FILE_ERROR(1), MEMORY_ERROR(2);
private final int statusCode;
private ErrStatus(int statusCode) {
this.statusCode = statusCode;
}
@Override
public String toString() {
return Integer.toString(statusCode);