Package io.micronaut.context.env
Class EmptyPropertySource
java.lang.Object
io.micronaut.context.env.EmptyPropertySource
- All Implemented Interfaces:
PropertySource,io.micronaut.core.order.Ordered,Iterable<String>
An PropertySource that is empty when instantiated.
- Since:
- 1.0
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.micronaut.context.env.PropertySource
PropertySource.PropertyConvention -
Field Summary
Fields inherited from interface io.micronaut.core.order.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCEFields inherited from interface io.micronaut.context.env.PropertySource
CONTEXT -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.EmptyPropertySource(String name) Creates a property source with a name. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliteratorMethods inherited from interface io.micronaut.core.order.Ordered
getOrderMethods inherited from interface io.micronaut.context.env.PropertySource
getConvention
-
Constructor Details
-
EmptyPropertySource
public EmptyPropertySource()Default constructor. Creates an empty property source. -
EmptyPropertySource
Creates a property source with a name.- Parameters:
name- The name
-
-
Method Details
-
getName
- Specified by:
getNamein interfacePropertySource- Returns:
- The name of the property source
-
get
Description copied from interface:PropertySourceGet a property value of the given key.- Specified by:
getin interfacePropertySource- Parameters:
key- The key- Returns:
- The value
-
iterator
-