public static IValue decode(byte[] data, IType hypType) throws DecodeException { try { return ser.decode(data, hypType); } catch (DecodeException e) { logDecodeException(e); throw e; } }
public static IValue incrementDecode( IEnsurableBitBuffer buffer, IType hypType, int[] resultValueLen) throws DecodeException { try { return ser.incrementDecode(buffer, hypType, resultValueLen); } catch (DecodeException e) { logDecodeException(e); throw e; } }
public static IValue decode(byte[] data, int offset, int len, IType hypType, int[] resultValueLen) throws DecodeException { try { return ser.decode(data, offset, len, hypType, resultValueLen); } catch (DecodeException e) { logDecodeException(e); throw e; } }