Open
Description
I noticed DefaultConversionService#convert
uses Enum#name
and not Enum#toString
.
The issue with this in locations comes with how most conventions have enum constants be uppercased, while paths are usually lowercased.
Therefore, using #toString
would let the developer decide for themselves.