This page is no longer maintained — Please continue to the home page at www.scala-lang.org

object methods in case class

1 reply
Pavel Chlupáček
Joined: 2011-07-04,
User offline. Last seen 42 years 45 weeks ago.

Hi,

anybody has shortcut syntax for following code? I feel that there
must be some way how to extend "object" part easily than decleare it
separately?

object MyCaseClass extends SomeOtherObject {
def convertToOtherObject(cc:MyCaseClass) = {
... some magic ...
}
}

case class MyCaseClass(par:String)

Thanks

Pavel

H-star Development
Joined: 2010-04-14,
User offline. Last seen 2 years 26 weeks ago.
Re: object methods in case class

it's not clear to me what you want. why don't you simply put the
convert-method into the case class?

Am 10.01.2012 16:24, schrieb Pavel Chlupáček:
> Hi,
>
> anybody has shortcut syntax for following code? I feel that there
> must be some way how to extend "object" part easily than decleare it
> separately?
>
> object MyCaseClass extends SomeOtherObject {
> def convertToOtherObject(cc:MyCaseClass) = {
> ... some magic ...
> }
> }
>
> case class MyCaseClass(par:String)
>
> Thanks
>
> Pavel
>

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland