RepositoryException
232233234235236237238239
try { return value.toDate(row, field); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
244245246247248249250251
try { return value.toDouble(row, field); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
256257258259260261262263
try { return value.toInteger(row, field); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
271272273274275276277278
try { return value.toLong(row, field); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
283284285286287288289290
try { return value.toString(row, field); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
296297298299300301302303
try { return value.toValue(field).isDefined(); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
308309310311312313314315
try { return new LapiClientValue(value.toValue(field)); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
320321322323324325326327
try { return value.toBoolean(field); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
332333334335336337338339
try { return value.toDate(field); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
344345346347348349350351
try { return value.toDouble(field); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }