getPropertyAsRawString abstract method

  1. @protected
String? getPropertyAsRawString(
  1. String key
)

Retrieve the raw property value for the given key.

Implementations should return the string value of a property without applying any type conversion or placeholder resolution. May return null if the property is not defined.

This method is protected and intended for use by subclasses that implement property resolution strategies (e.g., environment variables, configuration files).

Implementation

@protected
String? getPropertyAsRawString(String key);