java: enums and switch
Friday, September 28th, 2007In the wiki2wikiproject I am currently working on is a java-Enum called Wikitype:
public enum WikiType {
twiki,jspwiki
}
We all now the nice an sweet construct named switch..case. One would suggest it was quite easy to use this enum in a switch statement:
switch (mode) {
case WikiType.jspwiki:
return new JSPWikiSyntax();
case WikiType.twiki:
return new TWikiSyntax();
}
Seems right, but Java has kind …