Is this name absolute?
()
| 548 | * Is this name absolute? |
| 549 | */ |
| 550 | public boolean |
| 551 | isAbsolute() { |
| 552 | int nlabels = labels(); |
| 553 | if (nlabels == 0) |
| 554 | return false; |
| 555 | return name[offset(nlabels - 1)] == 0; |
| 556 | } |
| 557 | |
| 558 | /** |
| 559 | * The length of the name. |
no test coverage detected