This has probably been asked before, but a quick search only brought up the same question asked for C#. See here.

What I basically want to do is to check wether a given object implements a given interface.

I kind of figured out a solution but this is just not comfortable enough to use it frequently in if or case statements and I was wondering wether Java does not have built-in solution.

public static Boolean implementsInterface(Object object, Class interf){
    for (Class c : object.getClass().getInterfaces()) {
        if (c.equals(interf)) {
            return true;
        }
    }
    return false;
}


EDIT: Ok, thanks for your answers. Especially to Damien Pollet and Noldorin, you made me rethink my design so I don't test for interfaces anymore.

link|improve this question

2  
Can't you just try casting and catch the exception if one is thrown (or check for a null result even, if Java has anything analagous to the C# "as" operator)? I'm a C# coder rather than a Java one, so I'm mainly just guessing here, though I would think such an approach would be possible in any OO language. – Noldorin Apr 19 '09 at 21:21
yay ! you're welcome :) – Damien Pollet Apr 20 '09 at 23:55
feedback

4 Answers

up vote 25 down vote accepted

also the instanceof operator does the work, in a NPE safe way. For example:

 if ("" instanceof java.io.Serializable) {
     // it's true
 }

yields true. Since:

 if (null instanceof AnyType) {
     // never reached
 }

yields false, the instanceof operator is null safe (the code you posted isn't).

instanceof is the built-in, compile-time safe alternative to Class#isInstance(Object)

link|improve this answer
1  
instanceof only works on class literals though. So it can't be used in the OP's case – LordOfThePigs Apr 20 '09 at 0:07
sure, it is compile-time safe; and it is the built-in way and it is the argument of the question (imho) – dfa Apr 20 '09 at 8:10
feedback

This should do:

public static boolean implementsInterface(Object object, Class interf){
    return interf.isInstance(object);
}

For example,

 java.io.Serializable.class.isInstance("a test string")

evaluates to true.

link|improve this answer
feedback

that was easy :

   interf.isInstance(object)
link|improve this answer
beaten by 30 secs :( – Andreas Petersson Apr 19 '09 at 21:20
feedback

I prefer instanceof:

if (obj instanceof SomeType) { ... }

which is much more common and readable than SomeType.isInstance(obj)

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.