Returns the given property as a String @param property The property to fetch @return The property value as a string or null if the property did not exist
(final String property)
| 124 | * @return The property value as a string or null if the property did not exist |
| 125 | */ |
| 126 | public final String getString(final String property) { |
| 127 | return properties.get(property); |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Returns the given property as an integer |