Returns the length of this path, i.e. its number of steps. @return the length of this path.
()
| 80 | * @return the length of this path. |
| 81 | */ |
| 82 | public int getLength() { |
| 83 | // path_length is stored in the first byte of a type_path. |
| 84 | return typePathContainer[typePathOffset]; |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Returns the value of the given step of this path. |
no outgoing calls
no test coverage detected