List of utility methods to do Object to Float
int | objectToInt(Object val) get the value contained in the object. int v = Integer.MIN_VALUE; if (val instanceof Integer) { v = ((Integer) val).intValue(); if (v == Integer.MIN_VALUE + 1) { v = Integer.MIN_VALUE; } else if (val instanceof Short) { v = ((Short) val).shortValue(); ... |