Returns the value of the given step of this path. @param index an index between 0 and #getLength(), exclusive. @return one of #ARRAY_ELEMENT, #INNER_TYPE, #WILDCARD_BOUND, or #TYPE_ARGUMENT.
(final int index)
| 92 | * #TYPE_ARGUMENT}. |
| 93 | */ |
| 94 | public int getStep(final int index) { |
| 95 | // Returns the type_path_kind of the path element of the given index. |
| 96 | return typePathContainer[typePathOffset + 2 * index + 1]; |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Returns the index of the type argument that the given step is stepping into. This method should |