[Java] Update auto-generated bindings to 0.0.117
[ldk-java] / src / main / java / org / ldk / structs / Result_RecipientOnionFieldsNoneZ.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 java.lang.ref.Reference;
8 import javax.annotation.Nullable;
9
10 public class Result_RecipientOnionFieldsNoneZ extends CommonBase {
11         private Result_RecipientOnionFieldsNoneZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_RecipientOnionFieldsNoneZ_free(ptr); } super.finalize();
14         }
15
16         static Result_RecipientOnionFieldsNoneZ constr_from_ptr(long ptr) {
17                 if (bindings.CResult_RecipientOnionFieldsNoneZ_is_ok(ptr)) {
18                         return new Result_RecipientOnionFieldsNoneZ_OK(null, ptr);
19                 } else {
20                         return new Result_RecipientOnionFieldsNoneZ_Err(null, ptr);
21                 }
22         }
23         public static final class Result_RecipientOnionFieldsNoneZ_OK extends Result_RecipientOnionFieldsNoneZ {
24                 public final RecipientOnionFields res;
25                 private Result_RecipientOnionFieldsNoneZ_OK(Object _dummy, long ptr) {
26                         super(_dummy, ptr);
27                         long res = bindings.CResult_RecipientOnionFieldsNoneZ_get_ok(ptr);
28                         org.ldk.structs.RecipientOnionFields res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new org.ldk.structs.RecipientOnionFields(null, res); }
29                         if (res_hu_conv != null) { res_hu_conv.ptrs_to.add(this); };
30                         this.res = res_hu_conv;
31                 }
32         }
33
34         public static final class Result_RecipientOnionFieldsNoneZ_Err extends Result_RecipientOnionFieldsNoneZ {
35                 private Result_RecipientOnionFieldsNoneZ_Err(Object _dummy, long ptr) {
36                         super(_dummy, ptr);
37                 }
38         }
39
40         /**
41          * Creates a new CResult_RecipientOnionFieldsNoneZ in the success state.
42          */
43         public static Result_RecipientOnionFieldsNoneZ ok(org.ldk.structs.RecipientOnionFields o) {
44                 long ret = bindings.CResult_RecipientOnionFieldsNoneZ_ok(o == null ? 0 : o.ptr);
45                 Reference.reachabilityFence(o);
46                 if (ret >= 0 && ret <= 4096) { return null; }
47                 Result_RecipientOnionFieldsNoneZ ret_hu_conv = Result_RecipientOnionFieldsNoneZ.constr_from_ptr(ret);
48                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o); };
49                 return ret_hu_conv;
50         }
51
52         /**
53          * Creates a new CResult_RecipientOnionFieldsNoneZ in the error state.
54          */
55         public static Result_RecipientOnionFieldsNoneZ err() {
56                 long ret = bindings.CResult_RecipientOnionFieldsNoneZ_err();
57                 if (ret >= 0 && ret <= 4096) { return null; }
58                 Result_RecipientOnionFieldsNoneZ ret_hu_conv = Result_RecipientOnionFieldsNoneZ.constr_from_ptr(ret);
59                 return ret_hu_conv;
60         }
61
62         /**
63          * Checks if the given object is currently in the success state
64          */
65         public boolean is_ok() {
66                 boolean ret = bindings.CResult_RecipientOnionFieldsNoneZ_is_ok(this.ptr);
67                 Reference.reachabilityFence(this);
68                 return ret;
69         }
70
71         long clone_ptr() {
72                 long ret = bindings.CResult_RecipientOnionFieldsNoneZ_clone_ptr(this.ptr);
73                 Reference.reachabilityFence(this);
74                 return ret;
75         }
76
77         /**
78          * Creates a new CResult_RecipientOnionFieldsNoneZ which has the same data as `orig`
79          * but with all dynamically-allocated buffers duplicated in new buffers.
80          */
81         public Result_RecipientOnionFieldsNoneZ clone() {
82                 long ret = bindings.CResult_RecipientOnionFieldsNoneZ_clone(this.ptr);
83                 Reference.reachabilityFence(this);
84                 if (ret >= 0 && ret <= 4096) { return null; }
85                 Result_RecipientOnionFieldsNoneZ ret_hu_conv = Result_RecipientOnionFieldsNoneZ.constr_from_ptr(ret);
86                 return ret_hu_conv;
87         }
88
89 }