Package-level declarations
Types
Link copied to clipboard
Naming conventions for values.
Link copied to clipboard
object CaseConverter
Utility for converting strings between different naming conventions.
Functions
Link copied to clipboard
Converts snake_case to camelCase. Used e.g., when mapping from database (user_id -> userId).
Link copied to clipboard
Converts snake_case to PascalCase. Used e.g., when mapping class names (table_name -> TableName).
Link copied to clipboard
Converts any Camel/Pascal case text to snake_case. Used e.g., to generate column names from field names (userId -> user_id).