if ("One".equals(o)) {
System.out.println ("Do something for One");
} else if ("Two".equals(o)) {
System.out.println ("Ignore Two");
} else if ("Three".equals(o)) {
System.out.println ("Reverse Three");
} else if ("Four".equals(o)) {
System.out.println ("Four is the one");
} else {
return false;
}
return true;