[Java] Properly convert strings to/from Modified UTF-8
[ldk-java] / src / main / java / org / ldk / structs / Result_PaymentSecretNoneZ.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_PaymentSecretNoneZ extends CommonBase {
11         private Result_PaymentSecretNoneZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_PaymentSecretNoneZ_free(ptr); } super.finalize();
14         }
15
16         static Result_PaymentSecretNoneZ constr_from_ptr(long ptr) {
17                 if (bindings.CResult_PaymentSecretNoneZ_is_ok(ptr)) {
18                         return new Result_PaymentSecretNoneZ_OK(null, ptr);
19                 } else {
20                         return new Result_PaymentSecretNoneZ_Err(null, ptr);
21                 }
22         }
23         public static final class Result_PaymentSecretNoneZ_OK extends Result_PaymentSecretNoneZ {
24                 public final byte[] res;
25                 private Result_PaymentSecretNoneZ_OK(Object _dummy, long ptr) {
26                         super(_dummy, ptr);
27                         this.res = bindings.CResult_PaymentSecretNoneZ_get_ok(ptr);
28                 }
29         }
30
31         public static final class Result_PaymentSecretNoneZ_Err extends Result_PaymentSecretNoneZ {
32                 private Result_PaymentSecretNoneZ_Err(Object _dummy, long ptr) {
33                         super(_dummy, ptr);
34                 }
35         }
36
37         /**
38          * Creates a new CResult_PaymentSecretNoneZ in the success state.
39          */
40         public static Result_PaymentSecretNoneZ ok(byte[] o) {
41                 long ret = bindings.CResult_PaymentSecretNoneZ_ok(InternalUtils.check_arr_len(o, 32));
42                 Reference.reachabilityFence(o);
43                 if (ret >= 0 && ret <= 4096) { return null; }
44                 Result_PaymentSecretNoneZ ret_hu_conv = Result_PaymentSecretNoneZ.constr_from_ptr(ret);
45                 return ret_hu_conv;
46         }
47
48         /**
49          * Creates a new CResult_PaymentSecretNoneZ in the error state.
50          */
51         public static Result_PaymentSecretNoneZ err() {
52                 long ret = bindings.CResult_PaymentSecretNoneZ_err();
53                 if (ret >= 0 && ret <= 4096) { return null; }
54                 Result_PaymentSecretNoneZ ret_hu_conv = Result_PaymentSecretNoneZ.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_PaymentSecretNoneZ_is_ok(this.ptr);
63                 Reference.reachabilityFence(this);
64                 return ret;
65         }
66
67         long clone_ptr() {
68                 long ret = bindings.CResult_PaymentSecretNoneZ_clone_ptr(this.ptr);
69                 Reference.reachabilityFence(this);
70                 return ret;
71         }
72
73         /**
74          * Creates a new CResult_PaymentSecretNoneZ which has the same data as `orig`
75          * but with all dynamically-allocated buffers duplicated in new buffers.
76          */
77         public Result_PaymentSecretNoneZ clone() {
78                 long ret = bindings.CResult_PaymentSecretNoneZ_clone(this.ptr);
79                 Reference.reachabilityFence(this);
80                 if (ret >= 0 && ret <= 4096) { return null; }
81                 Result_PaymentSecretNoneZ ret_hu_conv = Result_PaymentSecretNoneZ.constr_from_ptr(ret);
82                 return ret_hu_conv;
83         }
84
85 }