Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an object and I want to detect what type is, so I can call

if (obj isa Integer)
  put(key,integerval);  
if (obj isa String)
    put(key,stringval);  
if (obj isa Boolean)
    put(key,booleanval);
share|improve this question
2  
There's not much point doing this. Even if you unbox the values before inserting them in your dictionary, they will be boxed again automatically. – Mark Byers Mar 6 '10 at 9:07
I am running a query with the contentvalues, and was dealing with columns as string, so I get ERROR/ContentValues(104): Cannot parse Integer value for true at key should_sync – Pentium10 Mar 6 '10 at 9:08

1 Answer

up vote 5 down vote accepted

You're pretty close, actually!

if (obj instanceof Integer)
    put(key,integerval);  
if (obj instanceof String)
    put(key,stringval);  
if (obj instanceof Boolean)
    put(key,booleanval);

From the JLS 15.20.2:

RelationalExpression instanceof ReferenceType

At run time, the result of the instanceof operator is true if the value of the RelationalExpression is not null and the reference could be cast (ยง15.16) to the ReferenceType without raising a ClassCastException. Otherwise the result is false.

Looking at your usage pattern, though, it looks like you may have bigger issues than this.

share|improve this answer
What issues, I don't understand. – Pentium10 Mar 6 '10 at 9:23
Well, as Mark Byers alluded to in his comment, this snippet just looks plain weird. It's hard to evaluate without looking at the whole context, but as far as your original question goes, instanceof is what you want. I hope this answer helps you. – polygenelubricants Mar 6 '10 at 9:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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