Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
-
String in Switch
Java 7 allows use of strings in switch instead of just integers, which make things much more convenient (see the following example).
public void foo(Foo t) {
String …