As far as I got in the case of case class
companion object is generated by the compiler automatically.
case class Clas(i: Int)
But in my case I want to add some fatory method apply(s: String): Clas
for convenience. So defined object myself as:
object Clas {
def apply(s: String) = //create Clas
}
How does it work? Why does methods from compiler-generated object are still available?