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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!