Returns the int value stored at the given index. @param index the location of the value in this array @return the value if it could be parsed as an int @throws LazyException if the index is out of bounds
(int index)
| 586 | * @throws LazyException if the index is out of bounds |
| 587 | */ |
| 588 | public int getInt(int index) throws LazyException{ |
| 589 | LazyNode token=getValueToken(index); |
| 590 | return token.getIntValue(); |
| 591 | } |
| 592 | |
| 593 | /** |
| 594 | * Returns the int value stored at the given index or 0 if there was no such value. |