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);
|
I have an object and I want to detect what type is, so I can call
|
|||||||
|
|
You're pretty close, actually!
From the JLS 15.20.2:
Looking at your usage pattern, though, it looks like you may have bigger issues than this. |
|||||
|