Question: * Determines whether the argument is a flag. Flags start with a dash - character, followed by at least one other non-whitespace character. * @param
* Determines whether the argument is a flag. Flags start with a dash "-" character, followed by at least one other non-whitespace character.
* @param arg the argument to test if its a flag
* @return {@code true} if the argument is a flag
* @see String#startsWith(String)
* @see String#trim()
* @see String#isEmpty()
* @see String#length()
*/
public static boolean isFlag(String arg) {
// TODO Fill in this method and fix the return.
return false;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
