1 3 package jodd.typeconverter; 4 5 import jodd.mutable.MutableLong; 6 7 10 public class MutableLongConverter implements TypeConverter { 11 12 public static MutableLong valueOf(Object value) { 13 14 if (value == null) { 15 return null; 16 } 17 if (value instanceof MutableLong) { 18 return (MutableLong) value; 19 } 20 if (value instanceof Number ) { 21 return new MutableLong(((Number )value).longValue()); 22 } 23 try { 24 return (new MutableLong(value.toString())); 25 } catch (NumberFormatException nfex) { 26 throw new TypeConversionException(nfex); 27 } 28 } 29 30 public Object convert(Object value) { 31 return valueOf(value); 32 } 33 34 } 35 | Popular Tags |