Update auto-generated bindings to latest upstream
[ldk-java] / src / main / java / org / ldk / structs / Init.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 import javax.annotation.Nullable;
8
9
10 /**
11  * An init message to be sent or received from a peer
12  */
13 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
14 public class Init extends CommonBase {
15         Init(Object _dummy, long ptr) { super(ptr); }
16         @Override @SuppressWarnings("deprecation")
17         protected void finalize() throws Throwable {
18                 super.finalize();
19                 if (ptr != 0) { bindings.Init_free(ptr); }
20         }
21
22         /**
23          * The relevant features which the sender supports
24          */
25         public InitFeatures get_features() {
26                 long ret = bindings.Init_get_features(this.ptr);
27                 if (ret < 1024) { return null; }
28                 InitFeatures ret_hu_conv = new InitFeatures(null, ret);
29                 ret_hu_conv.ptrs_to.add(this);
30                 return ret_hu_conv;
31         }
32
33         /**
34          * The relevant features which the sender supports
35          */
36         public void set_features(InitFeatures val) {
37                 bindings.Init_set_features(this.ptr, val == null ? 0 : val.ptr & ~1);
38                 this.ptrs_to.add(val);
39         }
40
41         /**
42          * Constructs a new Init given each field
43          */
44         public static Init of(InitFeatures features_arg) {
45                 long ret = bindings.Init_new(features_arg == null ? 0 : features_arg.ptr & ~1);
46                 if (ret < 1024) { return null; }
47                 Init ret_hu_conv = new Init(null, ret);
48                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
49                 ret_hu_conv.ptrs_to.add(features_arg);
50                 return ret_hu_conv;
51         }
52
53         /**
54          * Creates a copy of the Init
55          */
56         public Init clone() {
57                 long ret = bindings.Init_clone(this.ptr);
58                 if (ret < 1024) { return null; }
59                 Init ret_hu_conv = new Init(null, ret);
60                 ret_hu_conv.ptrs_to.add(this);
61                 return ret_hu_conv;
62         }
63
64         /**
65          * Serialize the Init object into a byte array which can be read by Init_read
66          */
67         public byte[] write() {
68                 byte[] ret = bindings.Init_write(this.ptr);
69                 return ret;
70         }
71
72         /**
73          * Read a Init from a byte array, created by Init_write
74          */
75         public static Result_InitDecodeErrorZ read(byte[] ser) {
76                 long ret = bindings.Init_read(ser);
77                 if (ret < 1024) { return null; }
78                 Result_InitDecodeErrorZ ret_hu_conv = Result_InitDecodeErrorZ.constr_from_ptr(ret);
79                 return ret_hu_conv;
80         }
81
82 }