5354555657585960
public static boolean toBoolean(Object obj) { try { return Caster.toBooleanValue(obj); } catch (PageException pe) { throw new PageRuntimeException(pe); } }
6162636465666768
public static float toFloat(Object obj) { try { return Caster.toFloatValue(obj); } catch (PageException pe) { throw new PageRuntimeException(pe); } }
6970717273747576
public static int toInt(Object obj) { try { return Caster.toIntValue(obj); } catch (PageException pe) { throw new PageRuntimeException(pe); } }
7778798081828384
public static double toDouble(Object obj) { try { return Caster.toDoubleValue(obj); } catch (PageException pe) { throw new PageRuntimeException(pe); } }
8586878889909192
public static long toLong(Object obj) { try { return Caster.toLongValue(obj); } catch (PageException pe) { throw new PageRuntimeException(pe); } }
93949596979899100
public static char toChar(Object obj) { try { return Caster.toCharValue(obj); } catch (PageException pe) { throw new PageRuntimeException(pe); } }
101102103104105106107108
public static byte toByte(Object obj) { try { return Caster.toByteValue(obj); } catch (PageException pe) { throw new PageRuntimeException(pe); } }
109110111112113114115116
public static short toShort(Object obj) { try { return Caster.toShortValue(obj); } catch (PageException pe) { throw new PageRuntimeException(pe); } }
281282283284285286287288289290291
info.setEL(Caster.toString(entry.getKey(),null), entry.getValue()); } return info; } catch(PageException pe) { throw new PageRuntimeException(pe); } finally { if(pr!=null)pr.close(); } }
651652653654655656657
return s3; } @Override public String getDefaultDataSource() { throw new PageRuntimeException(new DeprecatedException("this method is no longer supported!")); }