Checks if the specified string is "no", "false", "off" or "0". @param string string to be checked (can be null) @return result of check
(final String string)
| 86 | * @return result of check |
| 87 | */ |
| 88 | public static boolean isFalse(final String string) { |
| 89 | return eqic(string, Text.FALSE, Text.NO, Text.OFF, "0"); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Compares two strings for equality. |
no test coverage detected