format |
Specifies the format. Values: "noChange", "firstCapital", "firstLower", "allCapital", "allLower"
Default value: noChange
- firstCapital format means conversion to upper case of all first letters of the words in it, concatenate the words and
remove all spaces, _ ,$,\t\n\r\f etc. Same as Java class name formating convention.
- firstLower format means conversion to lower case the first letter of the first word, convert to upper case of all first
letters of the other words in it, concatenate the words and remove all spaces, _ ,$,\t\n\r\f etc. Same as Java variable
name formating convention.
- allCapital format means conversion to upper case all words, separate them with _, remove all spaces, _,$,\t\n\r\f etc. Same
as Java constant name formating convention.
- allLower format means conversion to lower case all words, remove all spaces, _,$,\t\n\r\f etc. Same
as Java package name formating convention.
|
FormatType |