object JsonNaming
Ordering
- Alphabetic
- By Inheritance
Inherited
- JsonNaming
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def apply(transformation: (String) => String): JsonNaming
Naming using a custom transformation function.
- 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).
- 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).
- 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).
Naming companion