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

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