public interface PropertyLoader
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getProperty(java.lang.String key)
Searches for the property with the specified key.
|
java.lang.String |
getProperty(java.lang.String key,
java.lang.String defaultValue)
Searches for the property with the specified key.
|
java.lang.String getProperty(java.lang.String key)
key
- the property key.null
if the property is not found.java.lang.String getProperty(java.lang.String key, java.lang.String defaultValue)
key
- the property key.defaultValue
- a default value.