up vote 3 down vote favorite
share [g+] share [fb]

Assuming that I have an object someObj of indeterminate type, I'd like to do something like:

def value = someObj.someMethod()

Where there's no guarantee that 'someObj' implements the someMethod() method, and if it doesn't, just return null.

Is there anything like that in Groovy, or do I need to wrap that in an if-statement with an instanceof check?

link|improve this question

65% accept rate
feedback

4 Answers

up vote 7 down vote accepted

Use respondsTo

class Foo {
   String prop
   def bar() { "bar" }
   def bar(String name) { "bar $name" }
}

def f = new Foo()

// Does f have a no-arg bar method
if (f.metaClass.respondsTo(f, "bar")) {
   // do stuff
}
// Does f have a bar method that takes a String param
if (f.metaClass.respondsTo(f, "bar", String)) {
   // do stuff
}
link|improve this answer
A late in responding, but this was exactly what I was looking for. Thanks! – Electrons_Ahoy Feb 25 '10 at 1:44
I didn't realise I had a deadline :) – Don Aug 1 '11 at 17:37
:) Sorry, I meant I was a little late in responding. You were spot on! I guess I should really proof-read these before I hit "Add Comment" – Electrons_Ahoy Aug 1 '11 at 21:00
ha, no problem! – Don Aug 1 '11 at 21:13
feedback

Just implement methodMissing in your class:

class Foo {
   def methodMissing(String name, args) { return null; }
}

And then, every time you try to invoke a method that doesn't exist, you will get a null value.

def foo = new Foo();
assert foo.someMethod(), null

For more information, take a look here: http://groovy.codehaus.org/Using+methodMissing+and+propertyMissing

link|improve this answer
That means all his Objects that don't have the someMethod behavior would have to implement the method? – Langali Oct 7 '09 at 21:37
feedback

You should be able to do something like:

SomeObj.metaClass.getMetaMethod("someMethod")

Or you can fall back to the good old Java reflection API.

link|improve this answer
There is nothing good about the relection API :) – Don Nov 18 '11 at 14:07
feedback

You can achieve this by using getMetaMethod together with the safe navigation operator ?.:

def str = "foo"
def num = 42

def methodName = "length"
def args = [] as Object[]

assert 3 == str.metaClass.getMetaMethod(methodName, args)?.invoke(str, args);
assert null == num.metaClass.getMetaMethod(methodName, args)?.invoke(num, args);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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