Skip to content

Instantly share code, notes, and snippets.

private static enum DBColumnTypes {
BOOL(1) {
@Override public void process(Args arguments) {
// do stuff here that you would otherwise do in the switch block
}
},
;