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