Name |
Description |
CamelCaseNamingConvention |
Convert the string with underscores (this_is_a_test) or hyphens (this-is-a-test) to camel case (thisIsATest). Camel case is the same as Pascal case, except the first letter is lowercase. |
HyphenatedNamingConvention |
Convert the string from camelcase (thisIsATest) to a hyphenated (this-is-a-test) string |
NullNamingConvention |
Performs no naming conversion. |
PascalCaseNamingConvention |
Convert the string with underscores (this_is_a_test) or hyphens (this-is-a-test) to pascal case (ThisIsATest). Pascal case is the same as camel case, except the first letter is uppercase. |
UnderscoredNamingConvention |
Convert the string from camelcase (thisIsATest) to a underscored (this_is_a_test) string |