public interface

PropertySources

implements Iterable<T>
org.springframework.core.env.PropertySources
Known Indirect Subclasses

Class Overview

Holder containing one or more PropertySource objects.

Summary

Public Methods
abstract boolean contains(String name)
Return whether a property source with the given name is contained.
abstract PropertySource<?> get(String name)
Return the property source with the given name, null if not found.
[Expand]
Inherited Methods
From interface java.lang.Iterable

Public Methods

public abstract boolean contains (String name)

Also: SpringCore

Return whether a property source with the given name is contained.

Parameters
name the name of the property source to find

public abstract PropertySource<?> get (String name)

Also: SpringCore

Return the property source with the given name, null if not found.

Parameters
name the name of the property source to find