[Java] Update auto-generated bindings to LDK 0.0.118
[ldk-java] / src / main / java / org / ldk / structs / Result_NoneBolt12SemanticErrorZ.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_NoneBolt12SemanticErrorZ extends CommonBase {
11         private Result_NoneBolt12SemanticErrorZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_NoneBolt12SemanticErrorZ_free(ptr); } super.finalize();
14         }
15
16         static Result_NoneBolt12SemanticErrorZ constr_from_ptr(long ptr) {
17                 if (bindings.CResult_NoneBolt12SemanticErrorZ_is_ok(ptr)) {
18                         return new Result_NoneBolt12SemanticErrorZ_OK(null, ptr);
19                 } else {
20                         return new Result_NoneBolt12SemanticErrorZ_Err(null, ptr);
21                 }
22         }
23         public static final class Result_NoneBolt12SemanticErrorZ_OK extends Result_NoneBolt12SemanticErrorZ {
24                 private Result_NoneBolt12SemanticErrorZ_OK(Object _dummy, long ptr) {
25                         super(_dummy, ptr);
26                 }
27         }
28
29         public static final class Result_NoneBolt12SemanticErrorZ_Err extends Result_NoneBolt12SemanticErrorZ {
30                 public final Bolt12SemanticError err;
31                 private Result_NoneBolt12SemanticErrorZ_Err(Object _dummy, long ptr) {
32                         super(_dummy, ptr);
33                         this.err = bindings.CResult_NoneBolt12SemanticErrorZ_get_err(ptr);
34                 }
35         }
36
37         /**
38          * Creates a new CResult_NoneBolt12SemanticErrorZ in the success state.
39          */
40         public static Result_NoneBolt12SemanticErrorZ ok() {
41                 long ret = bindings.CResult_NoneBolt12SemanticErrorZ_ok();
42                 if (ret >= 0 && ret <= 4096) { return null; }
43                 Result_NoneBolt12SemanticErrorZ ret_hu_conv = Result_NoneBolt12SemanticErrorZ.constr_from_ptr(ret);
44                 return ret_hu_conv;
45         }
46
47         /**
48          * Creates a new CResult_NoneBolt12SemanticErrorZ in the error state.
49          */
50         public static Result_NoneBolt12SemanticErrorZ err(org.ldk.enums.Bolt12SemanticError e) {
51                 long ret = bindings.CResult_NoneBolt12SemanticErrorZ_err(e);
52                 Reference.reachabilityFence(e);
53                 if (ret >= 0 && ret <= 4096) { return null; }
54                 Result_NoneBolt12SemanticErrorZ ret_hu_conv = Result_NoneBolt12SemanticErrorZ.constr_from_ptr(ret);
55                 return ret_hu_conv;
56         }
57
58         /**
59          * Checks if the given object is currently in the success state
60          */
61         public boolean is_ok() {
62                 boolean ret = bindings.CResult_NoneBolt12SemanticErrorZ_is_ok(this.ptr);
63                 Reference.reachabilityFence(this);
64                 return ret;
65         }
66
67         long clone_ptr() {
68                 long ret = bindings.CResult_NoneBolt12SemanticErrorZ_clone_ptr(this.ptr);
69                 Reference.reachabilityFence(this);
70                 return ret;
71         }
72
73         /**
74          * Creates a new CResult_NoneBolt12SemanticErrorZ which has the same data as `orig`
75          * but with all dynamically-allocated buffers duplicated in new buffers.
76          */
77         public Result_NoneBolt12SemanticErrorZ clone() {
78                 long ret = bindings.CResult_NoneBolt12SemanticErrorZ_clone(this.ptr);
79                 Reference.reachabilityFence(this);
80                 if (ret >= 0 && ret <= 4096) { return null; }
81                 Result_NoneBolt12SemanticErrorZ ret_hu_conv = Result_NoneBolt12SemanticErrorZ.constr_from_ptr(ret);
82                 return ret_hu_conv;
83         }
84
85 }