java.lang.Object
io.ebean.util.CamelCaseHelper
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic String
toCamelFromUnderscore
(String underscore) To camel from underscore.static String
toUnderscoreFromCamel
(String camelCase) To underscore from camel case using digits compressed true and force upper case false.static String
toUnderscoreFromCamel
(String camelCase, boolean digitsCompressed, boolean forceUpperCase) Convert and return the string to underscore from camel case.
-
Constructor Details
-
CamelCaseHelper
public CamelCaseHelper()
-
-
Method Details
-
toUnderscoreFromCamel
To underscore from camel case using digits compressed true and force upper case false. -
toUnderscoreFromCamel
public static String toUnderscoreFromCamel(String camelCase, boolean digitsCompressed, boolean forceUpperCase) Convert and return the string to underscore from camel case. -
toCamelFromUnderscore
To camel from underscore.- Parameters:
underscore
- the underscore- Returns:
- the string
-