069bc72d43fb6c54ae21ece1ba6e3f9c9910e774
[ldk-java] / src / main / java / org / ldk / structs / QueryShortChannelIds.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 QueryShortChannelIds extends CommonBase {
10         QueryShortChannelIds(Object _dummy, long ptr) { super(ptr); }
11         @Override @SuppressWarnings("deprecation")
12         protected void finalize() throws Throwable {
13                 super.finalize();
14                 if (ptr != 0) { bindings.QueryShortChannelIds_free(ptr); }
15         }
16
17         public byte[] get_chain_hash() {
18                 byte[] ret = bindings.QueryShortChannelIds_get_chain_hash(this.ptr);
19                 return ret;
20         }
21
22         public void set_chain_hash(byte[] val) {
23                 bindings.QueryShortChannelIds_set_chain_hash(this.ptr, val);
24         }
25
26         public void set_short_channel_ids(long[] val) {
27                 bindings.QueryShortChannelIds_set_short_channel_ids(this.ptr, val);
28         }
29
30         public static QueryShortChannelIds constructor_new(byte[] chain_hash_arg, long[] short_channel_ids_arg) {
31                 long ret = bindings.QueryShortChannelIds_new(chain_hash_arg, short_channel_ids_arg);
32                 QueryShortChannelIds ret_hu_conv = new QueryShortChannelIds(null, ret);
33                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
34                 return ret_hu_conv;
35         }
36
37         public QueryShortChannelIds clone() {
38                 long ret = bindings.QueryShortChannelIds_clone(this.ptr);
39                 QueryShortChannelIds ret_hu_conv = new QueryShortChannelIds(null, ret);
40                 ret_hu_conv.ptrs_to.add(this);
41                 return ret_hu_conv;
42         }
43
44         public static Result_QueryShortChannelIdsDecodeErrorZ constructor_read(byte[] ser) {
45                 long ret = bindings.QueryShortChannelIds_read(ser);
46                 Result_QueryShortChannelIdsDecodeErrorZ ret_hu_conv = Result_QueryShortChannelIdsDecodeErrorZ.constr_from_ptr(ret);
47                 return ret_hu_conv;
48         }
49
50         public byte[] write() {
51                 byte[] ret = bindings.QueryShortChannelIds_write(this.ptr);
52                 return ret;
53         }
54
55 }