The text to convert.
The case to convert the text to.
Converts the given text to camelCase. Shorthand for convertCase(text, CaseStyle.Camel). See convertCase.
The text to convert.
Converts the given text to InitCaps case. Shorthand for convertCase(text, CaseStyle.InitCaps). See convertCase.
The text to convert.
Converts the given text to kebab-case. Shorthand for convertCase(text, CaseStyle.Kebab). See convertCase.
The text to convert.
Converts the given text to PascalCase. Shorthand for convertCase(text, CaseStyle.Pascal). See convertCase.
The text to convert.
Converts the given text to plain case. Shorthand for convertCase(text, CaseStyle.Plain). See convertCase.
The text to convert.
Converts the given text to sentence case. Shorthand for convertCase(text, CaseStyle.Sentence). See convertCase.
The text to convert.
Converts the given text to snake_case. Shorthand for convertCase(text, CaseStyle.Snake). See convertCase.
The text to convert.
Converts the given text to Title Case. Shorthand for convertCase(text, CaseStyle.Title). See convertCase.
The text to convert.
Converts text to the target case.