Checks if the given character is a quote character. @param c the character to check @return true if the character is a single, double, or backtick quote
(char c)
| 384 | * @return true if the character is a single, double, or backtick quote |
| 385 | */ |
| 386 | protected boolean isQuote(char c) { |
| 387 | return c == '\'' || c == '\"' || c == '`'; |
| 388 | } |
| 389 | } |