Interface NamingScheme
-
- All Known Implementing Classes:
NamingSchemes
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface NamingScheme
An enforced style of naming.Common formats are exposed in
NamingSchemes
- Since:
- 4.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
coerce(java.lang.String input)
Given an input string of unknown formatting, make it follow a naming scheme.
-
-
-
Method Detail
-
coerce
java.lang.String coerce(java.lang.String input)
Given an input string of unknown formatting, make it follow a naming scheme.- Parameters:
input
- input string- Returns:
- output string
- Since:
- 4.0.0
-
-