Returns true if this result represents a malformed-input error or an unmappable-character error. @return true if this is a malformed-input error or an unmappable-character error, otherwise false.
()
| 174 | * unmappable-character error, otherwise false. |
| 175 | */ |
| 176 | public boolean isError() { |
| 177 | return this.type == TYPE_MALFORMED_INPUT |
| 178 | || this.type == TYPE_UNMAPPABLE_CHAR; |
| 179 | } |
| 180 | |
| 181 | /** |
| 182 | * Returns true if this result represents a malformed-input error. |
no outgoing calls
no test coverage detected