public static interface Notations.Phrase
| Modifier and Type | Method and Description |
|---|---|
Notations.Phrase |
append(java.lang.String... words) |
Notations.Phrase |
prepend(java.lang.String... words) |
java.lang.String |
toLowerCamelCase()
Converts the first word to lower case, converts the first letter of each following word to upper case, the
rest of the word to lower case, and concatenates the words.
|
java.lang.String |
toLowerCaseHyphenated()
Converts the words to lower case and concatenates them with
"-" as the separator. |
java.lang.String |
toLowerCaseUnderscored()
Converts the words to lower case and concatenates them with
"_" as the separator. |
java.lang.String |
toUpperCamelCase()
Converts the first letter of each word to upper case, the rest of each word to lower case, and concatenates
them.
|
java.lang.String |
toUpperCaseHyphenated()
Converts the words to upper case and concatenates them with
"-" as the separator. |
java.lang.String |
toUpperCaseUnderscored()
Converts the words to upper case and concatenates them with
"_" as the separator. |
Notations.Phrase prepend(java.lang.String... words)
this phraseNotations.Phrase append(java.lang.String... words)
this phrase and the wordsjava.lang.String toUpperCamelCase()
java.lang.String toLowerCamelCase()
java.lang.String toUpperCaseHyphenated()
"-" as the separator.java.lang.String toLowerCaseHyphenated()
"-" as the separator.java.lang.String toUpperCaseUnderscored()
"_" as the separator.java.lang.String toLowerCaseUnderscored()
"_" as the separator.