Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / Result_NetAddressDecodeErrorZ.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 public class Result_NetAddressDecodeErrorZ extends CommonBase {
10         private Result_NetAddressDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
11         protected void finalize() throws Throwable {
12                 if (ptr != 0) { bindings.CResult_NetAddressDecodeErrorZ_free(ptr); } super.finalize();
13         }
14
15         static Result_NetAddressDecodeErrorZ constr_from_ptr(long ptr) {
16                 if (bindings.LDKCResult_NetAddressDecodeErrorZ_result_ok(ptr)) {
17                         return new Result_NetAddressDecodeErrorZ_OK(null, ptr);
18                 } else {
19                         return new Result_NetAddressDecodeErrorZ_Err(null, ptr);
20                 }
21         }
22         public static final class Result_NetAddressDecodeErrorZ_OK extends Result_NetAddressDecodeErrorZ {
23                 public final NetAddress res;
24                 private Result_NetAddressDecodeErrorZ_OK(Object _dummy, long ptr) {
25                         super(_dummy, ptr);
26                         long res = bindings.LDKCResult_NetAddressDecodeErrorZ_get_ok(ptr);
27                         NetAddress res_hu_conv = NetAddress.constr_from_ptr(res);
28                         res_hu_conv.ptrs_to.add(this);
29                         this.res = res_hu_conv;
30                 }
31         }
32
33         public static final class Result_NetAddressDecodeErrorZ_Err extends Result_NetAddressDecodeErrorZ {
34                 public final DecodeError err;
35                 private Result_NetAddressDecodeErrorZ_Err(Object _dummy, long ptr) {
36                         super(_dummy, ptr);
37                         long err = bindings.LDKCResult_NetAddressDecodeErrorZ_get_err(ptr);
38                         DecodeError err_hu_conv = new DecodeError(null, err);
39                         err_hu_conv.ptrs_to.add(this);
40                         this.err = err_hu_conv;
41                 }
42         }
43
44         /**
45          * Creates a new CResult_NetAddressDecodeErrorZ in the success state.
46          */
47         public static Result_NetAddressDecodeErrorZ ok(NetAddress o) {
48                 long ret = bindings.CResult_NetAddressDecodeErrorZ_ok(o.ptr);
49                 if (ret < 1024) { return null; }
50                 Result_NetAddressDecodeErrorZ ret_hu_conv = Result_NetAddressDecodeErrorZ.constr_from_ptr(ret);
51                 return ret_hu_conv;
52         }
53
54         /**
55          * Creates a new CResult_NetAddressDecodeErrorZ in the error state.
56          */
57         public static Result_NetAddressDecodeErrorZ err(DecodeError e) {
58                 long ret = bindings.CResult_NetAddressDecodeErrorZ_err(e == null ? 0 : e.ptr & ~1);
59                 if (ret < 1024) { return null; }
60                 Result_NetAddressDecodeErrorZ ret_hu_conv = Result_NetAddressDecodeErrorZ.constr_from_ptr(ret);
61                 return ret_hu_conv;
62         }
63
64         /**
65          * Creates a new CResult_NetAddressDecodeErrorZ which has the same data as `orig`
66          * but with all dynamically-allocated buffers duplicated in new buffers.
67          */
68         public Result_NetAddressDecodeErrorZ clone() {
69                 long ret = bindings.CResult_NetAddressDecodeErrorZ_clone(this.ptr);
70                 if (ret < 1024) { return null; }
71                 Result_NetAddressDecodeErrorZ ret_hu_conv = Result_NetAddressDecodeErrorZ.constr_from_ptr(ret);
72                 return ret_hu_conv;
73         }
74
75 }