Properly set CVec_u8Z to a byte[] which adds a ton more fn's
[ldk-java] / src / main / java / org / ldk / structs / HTLCOutputInCommitment.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class HTLCOutputInCommitment extends CommonBase {
7         HTLCOutputInCommitment(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 super.finalize();
11                 bindings.HTLCOutputInCommitment_free(ptr);
12         }
13
14         public HTLCOutputInCommitment(HTLCOutputInCommitment orig) {
15                 super(bindings.HTLCOutputInCommitment_clone(orig == null ? 0 : orig.ptr & ~1));
16                 this.ptrs_to.add(orig);
17         }
18
19         public boolean get_offered(HTLCOutputInCommitment this_ptr) {
20                 boolean ret = bindings.HTLCOutputInCommitment_get_offered(this_ptr == null ? 0 : this_ptr.ptr & ~1);
21                 this.ptrs_to.add(this_ptr);
22                 return ret;
23         }
24
25         public void set_offered(HTLCOutputInCommitment this_ptr, boolean val) {
26                 bindings.HTLCOutputInCommitment_set_offered(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
27                 this.ptrs_to.add(this_ptr);
28         }
29
30         public long get_amount_msat(HTLCOutputInCommitment this_ptr) {
31                 long ret = bindings.HTLCOutputInCommitment_get_amount_msat(this_ptr == null ? 0 : this_ptr.ptr & ~1);
32                 this.ptrs_to.add(this_ptr);
33                 return ret;
34         }
35
36         public void set_amount_msat(HTLCOutputInCommitment this_ptr, long val) {
37                 bindings.HTLCOutputInCommitment_set_amount_msat(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
38                 this.ptrs_to.add(this_ptr);
39         }
40
41         public int get_cltv_expiry(HTLCOutputInCommitment this_ptr) {
42                 int ret = bindings.HTLCOutputInCommitment_get_cltv_expiry(this_ptr == null ? 0 : this_ptr.ptr & ~1);
43                 this.ptrs_to.add(this_ptr);
44                 return ret;
45         }
46
47         public void set_cltv_expiry(HTLCOutputInCommitment this_ptr, int val) {
48                 bindings.HTLCOutputInCommitment_set_cltv_expiry(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
49                 this.ptrs_to.add(this_ptr);
50         }
51
52         public byte[] get_payment_hash(HTLCOutputInCommitment this_ptr) {
53                 byte[] ret = bindings.HTLCOutputInCommitment_get_payment_hash(this_ptr == null ? 0 : this_ptr.ptr & ~1);
54                 this.ptrs_to.add(this_ptr);
55                 return ret;
56         }
57
58         public void set_payment_hash(HTLCOutputInCommitment this_ptr, byte[] val) {
59                 bindings.HTLCOutputInCommitment_set_payment_hash(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
60                 this.ptrs_to.add(this_ptr);
61         }
62
63         public byte[] write(HTLCOutputInCommitment obj) {
64                 byte[] ret = bindings.HTLCOutputInCommitment_write(obj == null ? 0 : obj.ptr & ~1);
65                 this.ptrs_to.add(obj);
66                 return ret;
67         }
68
69         public HTLCOutputInCommitment(byte[] ser) {
70                 super(bindings.HTLCOutputInCommitment_read(ser));
71         }
72
73 }