5556575859606162
{ return ((Boolean) get(name)).booleanValue(); } catch (Exception ex) { throw new InvalidPayloadException(); } }
6768697071727374
{ return ((Byte) get(name)).byteValue(); } catch (Exception ex) { throw new InvalidPayloadException(); } }
7980818283848586
{ return ((String) get(name)).getBytes(); } catch (Exception ex) { throw new InvalidPayloadException(); } }
9192939495969798
{ return ((Float) get(name)).floatValue(); } catch (Exception ex) { throw new InvalidPayloadException(); } }
103104105106107108109110
{ return ((Double) get(name)).doubleValue(); } catch (Exception ex) { throw new InvalidPayloadException(); } }
115116117118119120121122
{ return (char) ((Byte) get(name)).byteValue(); } catch (Exception ex) { throw new InvalidPayloadException(); } }
127128129130131132133134
{ return ((Integer) get(name)).intValue(); } catch (Exception ex) { throw new InvalidPayloadException(); } }
139140141142143144145146
{ return ((Long) get(name)).longValue(); } catch (Exception ex) { throw new InvalidPayloadException(); } }
151152153154155156157158
{ return (String) get(name); } catch (Exception ex) { throw new InvalidPayloadException(); } }
6970717273747576777879808182
try { Object ret = super.get(ELEMENT_NAME); if (ret == null) throw new InvalidPayloadException(); return (String) ret; } catch (ClassCastException ex) { throw new InvalidPayloadException(ex); } }