trait StringNormalizations extends AnyRef
Provides methods that produce Uniformity[String]
instances for various
ways to normalize strings for equality comparisons.
- Alphabetic
- By Inheritance
- StringNormalizations
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- val lowerCased: Uniformity[String]
Produces a
Uniformity[String]
whosenormalized
method returns the result of invokingtoLowerCase
on the passed string.Produces a
Uniformity[String]
whosenormalized
method returns the result of invokingtoLowerCase
on the passed string.- returns
a
Uniformity[String]
that normalizes by transforming strings to lower case.
- val trimmed: Uniformity[String]
Produces a
Uniformity[String]
whosenormalized
method returns the result of invokingtrim
on the passed string.Produces a
Uniformity[String]
whosenormalized
method returns the result of invokingtrim
on the passed string.- returns
a
Uniformity[String]
that normalizes strings by trimming them.
- val upperCased: Uniformity[String]
Produces a
Uniformity[String]
whosenormalized
method returns the result of invokingtoUpperCase
on the passed string.Produces a
Uniformity[String]
whosenormalized
method returns the result of invokingtoUpperCase
on the passed string.- returns
a
Uniformity[String]
that normalizes by transforming strings to upper case.