Package | Description |
---|---|
de.larssh.utils.text |
Utilities for strings
|
Modifier and Type | Field and Description |
---|---|
static SentenceFormatter |
SentenceFormatter.LOWER_CAMEL_CASE
Lower Camel Case formatter
Example: abcDefGhi
Words are translated to title case, except the first words, which is
translated to lower case.
|
static SentenceFormatter |
SentenceFormatter.LOWER_KEBAB_CASE
Lower Kebab Case formatter
Example: abc-def-ghi
Words are translated to lower case and are separated by minus character.
|
static SentenceFormatter |
SentenceFormatter.LOWER_SNAKE_CASE
Lower Snake Case formatter
Example: abc_def_ghi
Words are translated to lower case and are separated by underscore character.
|
static SentenceFormatter |
SentenceFormatter.LOWER_WHITE_SPACE
Lower White Space formatter
Example: Abc def ghi
Words are translated to lower case, except the first word, which is
translated to title case, and are separated by white space character.
|
static SentenceFormatter |
SentenceFormatter.UPPER_CAMEL_CASE
Upper Camel Case formatter
Example: AbcDefGhi
Words are translated to title case.
|
static SentenceFormatter |
SentenceFormatter.UPPER_KEBAB_CASE
Upper Kebab Case formatter
Example: ABC-DEF-GHI
Words are translated to upper case and are separated by minus character.
|
static SentenceFormatter |
SentenceFormatter.UPPER_SNAKE_CASE
Upper Snake Case formatter
Example: ABC_DEF_GHI
Words are translated to upper case and are separated by underscore character.
|
static SentenceFormatter |
SentenceFormatter.UPPER_WHITE_SPACE
Upper White Space formatter
Example: Abc Def Ghi
Words are translated to title case and are separated by white space
character.
|
Copyright © 2025. All rights reserved.