Updated bindings
[ldk-java] / src / main / java / org / ldk / structs / ReplyShortChannelIdsEnd.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 ReplyShortChannelIdsEnd extends CommonBase {
10         ReplyShortChannelIdsEnd(Object _dummy, long ptr) { super(ptr); }
11         @Override @SuppressWarnings("deprecation")
12         protected void finalize() throws Throwable {
13                 super.finalize();
14                 if (ptr != 0) { bindings.ReplyShortChannelIdsEnd_free(ptr); }
15         }
16
17         public ReplyShortChannelIdsEnd clone() {
18                 long ret = bindings.ReplyShortChannelIdsEnd_clone(this.ptr);
19                 ReplyShortChannelIdsEnd ret_hu_conv = new ReplyShortChannelIdsEnd(null, ret);
20                 return ret_hu_conv;
21         }
22
23         public byte[] get_chain_hash() {
24                 byte[] ret = bindings.ReplyShortChannelIdsEnd_get_chain_hash(this.ptr);
25                 return ret;
26         }
27
28         public void set_chain_hash(byte[] val) {
29                 bindings.ReplyShortChannelIdsEnd_set_chain_hash(this.ptr, val);
30         }
31
32         public boolean get_full_information() {
33                 boolean ret = bindings.ReplyShortChannelIdsEnd_get_full_information(this.ptr);
34                 return ret;
35         }
36
37         public void set_full_information(boolean val) {
38                 bindings.ReplyShortChannelIdsEnd_set_full_information(this.ptr, val);
39         }
40
41         public static ReplyShortChannelIdsEnd constructor_new(byte[] chain_hash_arg, boolean full_information_arg) {
42                 long ret = bindings.ReplyShortChannelIdsEnd_new(chain_hash_arg, full_information_arg);
43                 ReplyShortChannelIdsEnd ret_hu_conv = new ReplyShortChannelIdsEnd(null, ret);
44                 return ret_hu_conv;
45         }
46
47         public static Result_ReplyShortChannelIdsEndDecodeErrorZ constructor_read(byte[] ser) {
48                 long ret = bindings.ReplyShortChannelIdsEnd_read(ser);
49                 Result_ReplyShortChannelIdsEndDecodeErrorZ ret_hu_conv = Result_ReplyShortChannelIdsEndDecodeErrorZ.constr_from_ptr(ret);
50                 return ret_hu_conv;
51         }
52
53         public byte[] write() {
54                 byte[] ret = bindings.ReplyShortChannelIdsEnd_write(this.ptr);
55                 return ret;
56         }
57
58 }