[Java] Update auto-generated Java bindings to LDK 0.0.121
[ldk-java] / src / main / java / org / ldk / structs / SpliceAck.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 import java.lang.ref.Reference;
8 import javax.annotation.Nullable;
9
10
11 /**
12  * A splice_ack message to be received by or sent to the splice initiator.
13  */
14 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
15 public class SpliceAck extends CommonBase {
16         SpliceAck(Object _dummy, long ptr) { super(ptr); }
17         @Override @SuppressWarnings("deprecation")
18         protected void finalize() throws Throwable {
19                 super.finalize();
20                 if (ptr != 0) { bindings.SpliceAck_free(ptr); }
21         }
22
23         /**
24          * The channel ID where splicing is intended
25          */
26         public byte[] get_channel_id() {
27                 byte[] ret = bindings.SpliceAck_get_channel_id(this.ptr);
28                 Reference.reachabilityFence(this);
29                 return ret;
30         }
31
32         /**
33          * The channel ID where splicing is intended
34          */
35         public void set_channel_id(byte[] val) {
36                 bindings.SpliceAck_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
37                 Reference.reachabilityFence(this);
38                 Reference.reachabilityFence(val);
39         }
40
41         /**
42          * The genesis hash of the blockchain where the channel is intended to be spliced
43          */
44         public byte[] get_chain_hash() {
45                 byte[] ret = bindings.SpliceAck_get_chain_hash(this.ptr);
46                 Reference.reachabilityFence(this);
47                 return ret;
48         }
49
50         /**
51          * The genesis hash of the blockchain where the channel is intended to be spliced
52          */
53         public void set_chain_hash(byte[] val) {
54                 bindings.SpliceAck_set_chain_hash(this.ptr, InternalUtils.check_arr_len(val, 32));
55                 Reference.reachabilityFence(this);
56                 Reference.reachabilityFence(val);
57         }
58
59         /**
60          * The intended change in channel capacity: the amount to be added (positive value)
61          * or removed (negative value) by the sender (splice acceptor) by splicing into/from the channel.
62          */
63         public long get_relative_satoshis() {
64                 long ret = bindings.SpliceAck_get_relative_satoshis(this.ptr);
65                 Reference.reachabilityFence(this);
66                 return ret;
67         }
68
69         /**
70          * The intended change in channel capacity: the amount to be added (positive value)
71          * or removed (negative value) by the sender (splice acceptor) by splicing into/from the channel.
72          */
73         public void set_relative_satoshis(long val) {
74                 bindings.SpliceAck_set_relative_satoshis(this.ptr, val);
75                 Reference.reachabilityFence(this);
76                 Reference.reachabilityFence(val);
77         }
78
79         /**
80          * The key of the sender (splice acceptor) controlling the new funding transaction
81          */
82         public byte[] get_funding_pubkey() {
83                 byte[] ret = bindings.SpliceAck_get_funding_pubkey(this.ptr);
84                 Reference.reachabilityFence(this);
85                 return ret;
86         }
87
88         /**
89          * The key of the sender (splice acceptor) controlling the new funding transaction
90          */
91         public void set_funding_pubkey(byte[] val) {
92                 bindings.SpliceAck_set_funding_pubkey(this.ptr, InternalUtils.check_arr_len(val, 33));
93                 Reference.reachabilityFence(this);
94                 Reference.reachabilityFence(val);
95         }
96
97         /**
98          * Constructs a new SpliceAck given each field
99          */
100         public static SpliceAck of(byte[] channel_id_arg, byte[] chain_hash_arg, long relative_satoshis_arg, byte[] funding_pubkey_arg) {
101                 long ret = bindings.SpliceAck_new(InternalUtils.check_arr_len(channel_id_arg, 32), InternalUtils.check_arr_len(chain_hash_arg, 32), relative_satoshis_arg, InternalUtils.check_arr_len(funding_pubkey_arg, 33));
102                 Reference.reachabilityFence(channel_id_arg);
103                 Reference.reachabilityFence(chain_hash_arg);
104                 Reference.reachabilityFence(relative_satoshis_arg);
105                 Reference.reachabilityFence(funding_pubkey_arg);
106                 if (ret >= 0 && ret <= 4096) { return null; }
107                 org.ldk.structs.SpliceAck ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.SpliceAck(null, ret); }
108                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
109                 return ret_hu_conv;
110         }
111
112         long clone_ptr() {
113                 long ret = bindings.SpliceAck_clone_ptr(this.ptr);
114                 Reference.reachabilityFence(this);
115                 return ret;
116         }
117
118         /**
119          * Creates a copy of the SpliceAck
120          */
121         public SpliceAck clone() {
122                 long ret = bindings.SpliceAck_clone(this.ptr);
123                 Reference.reachabilityFence(this);
124                 if (ret >= 0 && ret <= 4096) { return null; }
125                 org.ldk.structs.SpliceAck ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.SpliceAck(null, ret); }
126                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
127                 return ret_hu_conv;
128         }
129
130         /**
131          * Checks if two SpliceAcks contain equal inner contents.
132          * This ignores pointers and is_owned flags and looks at the values in fields.
133          * Two objects with NULL inner values will be considered "equal" here.
134          */
135         public boolean eq(org.ldk.structs.SpliceAck b) {
136                 boolean ret = bindings.SpliceAck_eq(this.ptr, b == null ? 0 : b.ptr);
137                 Reference.reachabilityFence(this);
138                 Reference.reachabilityFence(b);
139                 if (this != null) { this.ptrs_to.add(b); };
140                 return ret;
141         }
142
143         @Override public boolean equals(Object o) {
144                 if (!(o instanceof SpliceAck)) return false;
145                 return this.eq((SpliceAck)o);
146         }
147         /**
148          * Serialize the SpliceAck object into a byte array which can be read by SpliceAck_read
149          */
150         public byte[] write() {
151                 byte[] ret = bindings.SpliceAck_write(this.ptr);
152                 Reference.reachabilityFence(this);
153                 return ret;
154         }
155
156         /**
157          * Read a SpliceAck from a byte array, created by SpliceAck_write
158          */
159         public static Result_SpliceAckDecodeErrorZ read(byte[] ser) {
160                 long ret = bindings.SpliceAck_read(ser);
161                 Reference.reachabilityFence(ser);
162                 if (ret >= 0 && ret <= 4096) { return null; }
163                 Result_SpliceAckDecodeErrorZ ret_hu_conv = Result_SpliceAckDecodeErrorZ.constr_from_ptr(ret);
164                 return ret_hu_conv;
165         }
166
167 }