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