RepositoryException
356357358359360361362363
try { return value.toInteger(field); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
371372373374375376377378
try { return value.toLong(field); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
383384385386387388389390
try { return value.toString(field); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
395396397398399400401402
try { return value.toValue(index).isDefined(); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
407408409410411412413414
try { return new LapiClientValue(value.toValue(index)); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
419420421422423424425426
try { return value.toBoolean(index); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
431432433434435436437438
try { return value.toDate(index); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
443444445446447448449450
try { return value.toDouble(index); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
455456457458459460461462
try { return value.toInteger(index); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }
470471472473474475476477
try { return value.toLong(index); } catch (LLIllegalOperationException e) { throw new IllegalArgumentException(e); } catch (RuntimeException e) { throw new LivelinkException(e, LOGGER); } }