372373374375376377378
} @Fallback @SlowPath public double doOther(Object operand) { throw new ConversionFailedException(operand.getClass().getName()); }
60616263646566
throw fail(operand.getClass().getName()); } @SlowPath private static ConversionFailedException fail(String className) { throw new ConversionFailedException(className); }
417418419420421422423
} @Fallback @SlowPath public int doOther(Object operand) { throw new ConversionFailedException(operand.getClass().getName()); }
272273274275276277278
54555657585960
308309310311312313314