Reads a number from the input stream and parses it as a long, only if the value will in fact fit into a signed 64-bit integer.
()
| 1200 | * fit into a signed 64-bit integer. |
| 1201 | */ |
| 1202 | public long getLong() throws IOException { |
| 1203 | goTo(LONG); |
| 1204 | return lval; |
| 1205 | } |
| 1206 | |
| 1207 | /** Reads a number from the input stream and parses it as a double */ |
| 1208 | public double getDouble() throws IOException { |