You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

10 lines
409 B

In any char field (suppose it has value *Hello World!*), add the option `transform` having one of the following values:
* `default` or no value produces *Hello World!*
* `upper` produces *HELLO WORLD!*
* `lower` produces *hello world!*
* `title` produces *Hello World!*
* `sentence` produces *Hello world!*
* `camel` produces *helloWorld!*
* `pascal` produces *HelloWorld!*
* `snake` produces *hello_world!*