Packages

implicit class StringExtensions extends AnyRef

Slick code generator string extension methods. (Warning: Not unicode-safe, uses String#apply)

Source
AbstractGenerator.scala
Linear Supertypes
AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StringExtensions
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new StringExtensions(str: String)

Value Members

  1. val str: String
  2. final def toCamelCase: String

    Capitalizes the first (16 bit) character of each word separated by one or more '_'.

    Capitalizes the first (16 bit) character of each word separated by one or more '_'. Lower cases all other characters. Removes one '_' from each sequence of one or more subsequent '_' (to avoid collision). (Warning: Not unicode-safe, uses String#apply)

  3. final def uncapitalize: String

    Lowercases the first (16 bit) character.

    Lowercases the first (16 bit) character. (Warning: Not unicode-safe, uses String#apply)