[Java] Update auto-generated Java bindings for 0.0.116
[ldk-java] / src / main / java / org / ldk / structs / Result_ShutdownScriptNoneZ.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_ShutdownScriptNoneZ extends CommonBase {
11         private Result_ShutdownScriptNoneZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_ShutdownScriptNoneZ_free(ptr); } super.finalize();
14         }
15
16         static Result_ShutdownScriptNoneZ constr_from_ptr(long ptr) {
17                 if (bindings.CResult_ShutdownScriptNoneZ_is_ok(ptr)) {
18                         return new Result_ShutdownScriptNoneZ_OK(null, ptr);
19                 } else {
20                         return new Result_ShutdownScriptNoneZ_Err(null, ptr);
21                 }
22         }
23         public static final class Result_ShutdownScriptNoneZ_OK extends Result_ShutdownScriptNoneZ {
24                 public final ShutdownScript res;
25                 private Result_ShutdownScriptNoneZ_OK(Object _dummy, long ptr) {
26                         super(_dummy, ptr);
27                         long res = bindings.CResult_ShutdownScriptNoneZ_get_ok(ptr);
28                         org.ldk.structs.ShutdownScript res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new org.ldk.structs.ShutdownScript(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_ShutdownScriptNoneZ_Err extends Result_ShutdownScriptNoneZ {
35                 private Result_ShutdownScriptNoneZ_Err(Object _dummy, long ptr) {
36                         super(_dummy, ptr);
37                 }
38         }
39
40         /**
41          * Creates a new CResult_ShutdownScriptNoneZ in the success state.
42          */
43         public static Result_ShutdownScriptNoneZ ok(org.ldk.structs.ShutdownScript o) {
44                 long ret = bindings.CResult_ShutdownScriptNoneZ_ok(o == null ? 0 : o.ptr);
45                 Reference.reachabilityFence(o);
46                 if (ret >= 0 && ret <= 4096) { return null; }
47                 Result_ShutdownScriptNoneZ ret_hu_conv = Result_ShutdownScriptNoneZ.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_ShutdownScriptNoneZ in the error state.
54          */
55         public static Result_ShutdownScriptNoneZ err() {
56                 long ret = bindings.CResult_ShutdownScriptNoneZ_err();
57                 if (ret >= 0 && ret <= 4096) { return null; }
58                 Result_ShutdownScriptNoneZ ret_hu_conv = Result_ShutdownScriptNoneZ.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_ShutdownScriptNoneZ_is_ok(this.ptr);
67                 Reference.reachabilityFence(this);
68                 return ret;
69         }
70
71         long clone_ptr() {
72                 long ret = bindings.CResult_ShutdownScriptNoneZ_clone_ptr(this.ptr);
73                 Reference.reachabilityFence(this);
74                 return ret;
75         }
76
77         /**
78          * Creates a new CResult_ShutdownScriptNoneZ which has the same data as `orig`
79          * but with all dynamically-allocated buffers duplicated in new buffers.
80          */
81         public Result_ShutdownScriptNoneZ clone() {
82                 long ret = bindings.CResult_ShutdownScriptNoneZ_clone(this.ptr);
83                 Reference.reachabilityFence(this);
84                 if (ret >= 0 && ret <= 4096) { return null; }
85                 Result_ShutdownScriptNoneZ ret_hu_conv = Result_ShutdownScriptNoneZ.constr_from_ptr(ret);
86                 return ret_hu_conv;
87         }
88
89 }