Package org.springframework.core.env
Interface PropertySources
- All Superinterfaces:
Iterable<PropertySource<?>>
- All Known Implementing Classes:
MutablePropertySources
public interface PropertySources extends Iterable<PropertySource<?>>
Holder containing one or morePropertySourceobjects.- Since:
- 3.1
- Author:
- Chris Beams
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancontains(String name)Return whether a property source with the given name is contained.PropertySource<?>get(String name)Return the property source with the given name,nullif not found.Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
Method Detail
contains
boolean contains(String name)
Return whether a property source with the given name is contained.- Parameters:
name- the name of the property source to find
get
PropertySource<?> get(String name)
Return the property source with the given name,nullif not found.- Parameters:
name- the name of the property source to find