Interface PropertySources
- All Superinterfaces:
- Iterable<PropertySource<?>>
- All Known Implementing Classes:
- MutablePropertySources
Holder containing one or more 
PropertySource objects.- Since:
- 3.1
- Author:
- Chris Beams, Juergen Hoeller
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionbooleanReturn whether a property source with the given name is contained.Return the property source with the given name,nullif not found.default Stream<PropertySource<?>> stream()Return a sequentialStreamcontaining the property sources.Methods inherited from interface IterableforEach, iterator, spliterator
- 
Method Details- 
streamReturn a sequentialStreamcontaining the property sources.- Since:
- 5.1
 
- 
containsReturn whether a property source with the given name is contained.- Parameters:
- name- the name of the property source to find
 
- 
getReturn the property source with the given name,nullif not found.- Parameters:
- name- the name of the property source to find
 
 
-