com.github.tonybaines.gestalt.transformers.HyphenatedPropertyNameTransformer.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gestalt Show documentation
Show all versions of gestalt Show documentation
Gestalt is a library for making configuration easier in Java
package com.github.tonybaines.gestalt.transformers
import static com.google.common.base.CaseFormat.LOWER_CAMEL
import static com.google.common.base.CaseFormat.LOWER_HYPHEN
class HyphenatedPropertyNameTransformer implements PropertyNameTransformer {
String fromPropertyName(String propertyName) { LOWER_CAMEL.to(LOWER_HYPHEN, propertyName) }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy