Package io.micronaut.context.env
Interface PropertyEntry
public interface PropertyEntry
A property entry models a configuration property registration within a
particular
- Since:
- 4.8.0
-
Method Summary
-
Method Details
-
property
@NonNull String property()- Returns:
- The name of the property.
-
value
@NonNull Object value()- Returns:
- The value of the property.
-
raw
@NonNull String raw()- Returns:
- The raw name of the property prior to normalization.
-
origin
@NonNull PropertySource.Origin origin()- Returns:
- The origin of the property.
-