object JsonNaming

Naming companion

Source
JsonConfiguration.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsonNaming
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply(transformation: (String) => String): JsonNaming

    Naming using a custom transformation function.

  2. object Identity extends JsonNaming

    For each class property, use the name as is for its column (e.g.

    For each class property, use the name as is for its column (e.g. fooBar -> fooBar).

  3. object PascalCase extends JsonNaming

    For each class property, use the pascal case equivalent to name its column (e.g.

    For each class property, use the pascal case equivalent to name its column (e.g. fooBar -> FooBar).

  4. object SnakeCase extends JsonNaming

    For each class property, use the snake case equivalent to name its column (e.g.

    For each class property, use the snake case equivalent to name its column (e.g. fooBar -> foo_bar).