No. While this feature is often requested, it's unlikely to be added to a future version of Java. Check out Java's bug database. It doesn't give a reason, but I don't think the stance has changed much in the last thirteen years. You can also follow more recent discussion of this RFE.
Update: Switch statements with String cases have been suggested again as an addition for Java 7, and made the initial cut in "Project Coin".
For more technical depth, you can refer to the JVM Specification, where the compilation of switch statements is described. In a nutshell, there are two different JVM instructions that can be used for a switch, depending on the sparsity of the constants used by the cases. Both depend on using integer constants for each case to execute efficiently.
If the constants are dense, they are used as an index (after subtracting the lowest value) into a table of instruction pointers—the tableswitch instruction.
If the constants are sparse, a binary search for the correct case is performed—the lookupswitch instruction.
Both instructions require the integer constants assigned to each case to be sorted at compile time. At runtime, while the O(1) performance of tableswitch generally appears better than the O(log(n)) performance of lookupswitch, it requires some analysis to determine whether the table is dense enough to justify the space–time tradeoff. Bill Venners wrote a great article that covers this in more detail, along with an under-the-hood look at other Java flow control instructions.
Of course, a hash table from Strings or other types to integer constants could be synthesized at compile time, supporting switch on String. Java support for enum does part of this compiler magic for you, providing a static valueOf method on any enum type. For example:
Pill p = Pill.valueOf(str);
switch(p) {
case RED: pop(); break;
case BLUE: push(); break;
}