Java org.springframework.core.env MutablePropertySources fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.core.env MutablePropertySources fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.core.env MutablePropertySources.

The text is from its open source code.

Subclass

org.springframework.core.env.MutablePropertySources has subclasses.
Click this link to see all its subclasses.

Constructor

MutablePropertySources()
Create a new MutablePropertySources object.

Method

voidaddAfter(String relativePropertySourceName, PropertySource propertySource)
Add the given property source object with precedence immediately lower than the named relative property source.
voidaddBefore(String relativePropertySourceName, PropertySource propertySource)
Add the given property source object with precedence immediately higher than the named relative property source.
voidaddFirst(PropertySource propertySource)
Add the given property source object with highest precedence.
voidaddLast(PropertySource propertySource)
Add the given property source object with lowest precedence.
booleancontains(String name)
voidforEach(Consumer action)
Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
PropertySourceget(String name)
Iterator>iterator()
intprecedenceOf(PropertySource propertySource)
Return the precedence of the given property source, -1 if not found.
PropertySourceremove(String name)
Remove and return the property source with the given name, null if not found.
voidreplace(String name, PropertySource propertySource)
Replace the property source with the given name with the given property source object.
intsize()
Return the number of PropertySource objects contained.