Returns the result code of the lookup. @return The result code, which can be SUCCESSFUL, UNRECOVERABLE, TRY_AGAIN, HOST_NOT_FOUND, or TYPE_NOT_FOUND. @throws IllegalStateException The lookup has not completed.
()
| 628 | * @throws IllegalStateException The lookup has not completed. |
| 629 | */ |
| 630 | public int |
| 631 | getResult() { |
| 632 | checkDone(); |
| 633 | return result; |
| 634 | } |
| 635 | |
| 636 | /** |
| 637 | * Returns an error string describing the result code of this lookup. |
no test coverage detected