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

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

Introduction

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

The text is from its open source code.

Subclass

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

Constructor

PropertySource(String name)
Create a new PropertySource with the given name and with a new Object instance as the underlying source.
PropertySource(String name, T source)
Create a new PropertySource with the given name and source object.

Method

booleancontainsProperty(String name)
Return whether this PropertySource contains the given name.
ClassgetClass()
Returns the runtime class of this Object .
StringgetName()
Return the name of this PropertySource .
ObjectgetProperty(String name)
Return the value associated with the given name, or null if not found.
TgetSource()
Return the underlying source object for this PropertySource .
PropertySourcenamed(String name)
Return a PropertySource implementation intended for collection comparison purposes only.