Returns the given property as a String @param property The property to load @return The property value as a string @throws NullPointerException if the property did not exist
(final String property)
| 326 | * @throws NullPointerException if the property did not exist |
| 327 | */ |
| 328 | public final String getString(final String property) { |
| 329 | return properties.get(property); |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * Returns the given property as an integer |