57f94ec2202165b714d91a7712ce81070e476f1c
[ldk-java] / src / main / java / org / ldk / structs / HTLCUpdate.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7
8 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
9 public class HTLCUpdate extends CommonBase {
10         HTLCUpdate(Object _dummy, long ptr) { super(ptr); }
11         @Override @SuppressWarnings("deprecation")
12         protected void finalize() throws Throwable {
13                 super.finalize();
14                 if (ptr != 0) { bindings.HTLCUpdate_free(ptr); }
15         }
16
17         public HTLCUpdate clone() {
18                 long ret = bindings.HTLCUpdate_clone(this.ptr);
19                 HTLCUpdate ret_hu_conv = new HTLCUpdate(null, ret);
20                 ret_hu_conv.ptrs_to.add(this);
21                 return ret_hu_conv;
22         }
23
24         public byte[] write() {
25                 byte[] ret = bindings.HTLCUpdate_write(this.ptr);
26                 return ret;
27         }
28
29         public static Result_HTLCUpdateDecodeErrorZ constructor_read(byte[] ser) {
30                 long ret = bindings.HTLCUpdate_read(ser);
31                 Result_HTLCUpdateDecodeErrorZ ret_hu_conv = Result_HTLCUpdateDecodeErrorZ.constr_from_ptr(ret);
32                 return ret_hu_conv;
33         }
34
35 }