downcase

Returns the input string converted to lowercase.

Follows the Unicode Default Case Conversion algorithm and the locale-insensitive case mappings in the Unicode Character Database.

Example usage:


SymbolLayer symbolLayer = new SymbolLayer("layer-id", "source-id");
symbolLayer.setProperties(
    textField(downcase(get("key-to-string-value")))
);

Return

expression

Parameters

input

expression input

See also


open fun downcase(@NonNull input: String): Expression(source)

Returns the input string converted to lowercase.

Follows the Unicode Default Case Conversion algorithm and the locale-insensitive case mappings in the Unicode Character Database.

Example usage:


SymbolLayer symbolLayer = new SymbolLayer("layer-id", "source-id");
symbolLayer.setProperties(
    textField(upcase("key-to-string-value"))
);

Return

expression

Parameters

input

string to downcase

See also