()
| 783 | } |
| 784 | |
| 785 | public int intValue() throws UtilEvalError |
| 786 | { |
| 787 | if(value instanceof Number) |
| 788 | return((Number)value).intValue(); |
| 789 | else |
| 790 | throw new UtilEvalError("Primitive not a number"); |
| 791 | } |
| 792 | |
| 793 | public boolean booleanValue() throws UtilEvalError |
| 794 | { |
no outgoing calls