Updated bindings
[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 QueryShortChannelIds clone() {
18                 long ret = bindings.QueryShortChannelIds_clone(this.ptr);
19                 QueryShortChannelIds ret_hu_conv = new QueryShortChannelIds(null, ret);
20                 return ret_hu_conv;
21         }
22
23         public byte[] get_chain_hash() {
24                 byte[] ret = bindings.QueryShortChannelIds_get_chain_hash(this.ptr);
25                 return ret;
26         }
27
28         public void set_chain_hash(byte[] val) {
29                 bindings.QueryShortChannelIds_set_chain_hash(this.ptr, val);
30         }
31
32         public void set_short_channel_ids(long[] val) {
33                 bindings.QueryShortChannelIds_set_short_channel_ids(this.ptr, val);
34         }
35
36         public static QueryShortChannelIds constructor_new(byte[] chain_hash_arg, long[] short_channel_ids_arg) {
37                 long ret = bindings.QueryShortChannelIds_new(chain_hash_arg, short_channel_ids_arg);
38                 QueryShortChannelIds ret_hu_conv = new QueryShortChannelIds(null, ret);
39                 return ret_hu_conv;
40         }
41
42         public static Result_QueryShortChannelIdsDecodeErrorZ constructor_read(byte[] ser) {
43                 long ret = bindings.QueryShortChannelIds_read(ser);
44                 Result_QueryShortChannelIdsDecodeErrorZ ret_hu_conv = Result_QueryShortChannelIdsDecodeErrorZ.constr_from_ptr(ret);
45                 return ret_hu_conv;
46         }
47
48         public byte[] write() {
49                 byte[] ret = bindings.QueryShortChannelIds_write(this.ptr);
50                 return ret;
51         }
52
53 }