6e3163c3a77fa9134ec37135bec2653dfaef3dfa
[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 static ReplyShortChannelIdsEnd constructor_clone(ReplyShortChannelIdsEnd orig) {
18                 long ret = bindings.ReplyShortChannelIdsEnd_clone(orig == null ? 0 : orig.ptr & ~1);
19                 ReplyShortChannelIdsEnd ret_hu_conv = new ReplyShortChannelIdsEnd(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.ReplyShortChannelIdsEnd_get_chain_hash(this.ptr);
26                 return ret;
27         }
28
29         public void set_chain_hash(byte[] val) {
30                 bindings.ReplyShortChannelIdsEnd_set_chain_hash(this.ptr, val);
31         }
32
33         public boolean get_full_information() {
34                 boolean ret = bindings.ReplyShortChannelIdsEnd_get_full_information(this.ptr);
35                 return ret;
36         }
37
38         public void set_full_information(boolean val) {
39                 bindings.ReplyShortChannelIdsEnd_set_full_information(this.ptr, val);
40         }
41
42         public static ReplyShortChannelIdsEnd constructor_new(byte[] chain_hash_arg, boolean full_information_arg) {
43                 long ret = bindings.ReplyShortChannelIdsEnd_new(chain_hash_arg, full_information_arg);
44                 ReplyShortChannelIdsEnd ret_hu_conv = new ReplyShortChannelIdsEnd(null, ret);
45                 return ret_hu_conv;
46         }
47
48         public static ReplyShortChannelIdsEnd constructor_read(byte[] ser) {
49                 long ret = bindings.ReplyShortChannelIdsEnd_read(ser);
50                 ReplyShortChannelIdsEnd ret_hu_conv = new ReplyShortChannelIdsEnd(null, ret);
51                 return ret_hu_conv;
52         }
53
54         public byte[] write(ReplyShortChannelIdsEnd obj) {
55                 byte[] ret = bindings.ReplyShortChannelIdsEnd_write(obj == null ? 0 : obj.ptr & ~1);
56                 this.ptrs_to.add(obj);
57                 return ret;
58         }
59
60 }