public class PropertiesPropertySource extends MapPropertySource
PropertySource
implementation that extracts properties from a
Properties
object.
Note that because a Properties
object is technically an
<Object, Object>
Hashtable
, one may contain
non-String
keys or values. This implementation, however is restricted to
accessing only String
-based keys and values, in the same fashion as
Properties.getProperty(java.lang.String)
and Properties.setProperty(java.lang.String, java.lang.String)
.
PropertySource.StubPropertySource
logger, name, source
Modifier | Constructor and Description |
---|---|
protected |
PropertiesPropertySource(String name,
Map<String,Object> source) |
|
PropertiesPropertySource(String name,
Properties source) |
Modifier and Type | Method and Description |
---|---|
String[] |
getPropertyNames()
Return the names of all properties contained by the
source object (never
null ). |
containsProperty, getProperty
public PropertiesPropertySource(String name, Properties source)
public String[] getPropertyNames()
EnumerablePropertySource
null
).getPropertyNames
in class MapPropertySource