Return the primitive value stored in its java.lang wrapper class
()
| 168 | Return the primitive value stored in its java.lang wrapper class |
| 169 | */ |
| 170 | public Object getValue() |
| 171 | { |
| 172 | if ( value == Special.NULL_VALUE ) |
| 173 | return null; |
| 174 | else |
| 175 | if ( value == Special.VOID_TYPE ) |
| 176 | throw new InterpreterError("attempt to unwrap void type"); |
| 177 | else |
| 178 | return value; |
| 179 | } |
| 180 | |
| 181 | public String toString() |
| 182 | { |
no outgoing calls
no test coverage detected