I have a domain class like:

class MyDomainClass{
  String name
}

And an interface with a signature like:

BigDecimal doBigThangs(MyDomainClass startHere)

I want to be able to call it like this

doBigThangs('stuff')

And have it automatically coerse the string 'stuff' into the appropriate MyDomainClass. This is what I have tried, but perhaps I need to use "asType" or something.

ExpandoMetaClass.enableGlobally()
String.metaClass.toMyDomainClass = {->MyDomainClass.findByNameLike(delegate)}
link|improve this question

Is it possible to use simple polymorphism to handle this? – cdeszaq Feb 7 at 21:30
I'll go try to finally understand polymorphism and let you know :p – Mikey Feb 7 at 21:35
It seems like "polymorphism" just means "implements an interface" which still leaves me with the question: how do I implement that interface on String? – Mikey Feb 7 at 21:38
feedback

1 Answer

up vote 1 down vote accepted

You are correct: you can add a type conversion by overriding asType. Your example would look something like this:

oldAsType = String.metaClass.getMetaMethod("asType", [Class] as Class[])
String.metaClass.asType = { Class c ->
    if (c == MyDomainClass) { 
        MyDomainClass.findByNameLike(delegate)
    } else {
        oldAsType.invoke(delegate, c)
    }
}

However, groovy won't silently cast a String to another type on a method call. You'll have to call your method like this:

doBigThangs('stuff' as MyDomainClass)
link|improve this answer
Thanks, thats exactly what I was looking for. Is there some way to use something like super() instead of the oldAsType thing? I'm trying to get my head around the all the groovy concepts. – Mikey Feb 7 at 21:50
As far as I know, once you overwrite the asType metaMethod, the old one is gone unless you saved a reference. – ataylor Feb 7 at 21:53
Mine crashes without writing "def oldAsType" by my understanding was the def was only necessary to make things local... weird. – Mikey Feb 7 at 22:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.