14 lines
197 B
Plaintext
14 lines
197 B
Plaintext
package pkg;
|
|
|
|
public class TestSwitchOnStrings {
|
|
public int testSOE(String s) {
|
|
switch (s) {
|
|
case "xxx":
|
|
return 2;
|
|
case "yyy":
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
}
|