Interface OriginLookup<K>
- Type Parameters:
K- the lookup key type
- All Known Implementing Classes:
ConfigTreePropertySource,OriginTrackedMapPropertySource,SystemEnvironmentPropertySourceEnvironmentPostProcessor.OriginAwareSystemEnvironmentPropertySource
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
An interface that may be implemented by an object that can lookup
Origin
information from a given key. Can be used to add origin support to existing classes.- Since:
- 2.0.0
-
Method Summary
Modifier and TypeMethodDescriptionstatic <K> @Nullable OriginAttempt to look up the origin from the given source.@Nullable OriginReturn the origin of the given key ornullif the origin cannot be determined.default @Nullable StringReturn the implicit prefix that is applied when performing a lookup ornullif no prefix is used.default booleanReturntrueif this lookup is immutable and has contents that will never change.
-
Method Details
-
getOrigin
-
isImmutable
default boolean isImmutable()Returntrueif this lookup is immutable and has contents that will never change.- Returns:
- if the lookup is immutable
- Since:
- 2.2.0
-
getPrefix
Return the implicit prefix that is applied when performing a lookup ornullif no prefix is used. Prefixes can be used to disambiguate keys that would otherwise clash. For example, if multiple applications are running on the same machine a different prefix can be set on each application to ensure that different environment variables are used.- Returns:
- the prefix applied by the lookup class or
null. - Since:
- 2.5.0
-
getOrigin
Attempt to look up the origin from the given source. If the source is not aOriginLookupor if an exception occurs during lookup thennullis returned.- Type Parameters:
K- the key type- Parameters:
source- the source objectkey- the key to lookup- Returns:
- an
Originornull
-