Bindings updates
[ldk-java] / ts / structs / Result_SecretKeySecpErrorZ.ts
1
2 import CommonBase from './CommonBase';
3 import * as bindings from '../bindings' // TODO: figure out location
4
5 public class Result_SecretKeySecpErrorZ extends CommonBase {
6         private Result_SecretKeySecpErrorZ(Object _dummy, long ptr) { super(ptr); }
7         protected void finalize() throws Throwable {
8                 if (ptr != 0) { bindings.CResult_SecretKeySecpErrorZ_free(ptr); } super.finalize();
9         }
10
11         static Result_SecretKeySecpErrorZ constr_from_ptr(long ptr) {
12                 if (bindings.LDKCResult_SecretKeySecpErrorZ_result_ok(ptr)) {
13                         return new Result_SecretKeySecpErrorZ_OK(null, ptr);
14                 } else {
15                         return new Result_SecretKeySecpErrorZ_Err(null, ptr);
16                 }
17         }
18         public static final class Result_SecretKeySecpErrorZ_OK extends Result_SecretKeySecpErrorZ {
19                 public final Uint8Array res;
20                 private Result_SecretKeySecpErrorZ_OK(Object _dummy, long ptr) {
21                         super(_dummy, ptr);
22                         this.res = bindings.LDKCResult_SecretKeySecpErrorZ_get_ok(ptr);
23                 }
24                 public Result_SecretKeySecpErrorZ_OK(Uint8Array res) {
25                         this(null, bindings.CResult_SecretKeySecpErrorZ_ok(res));
26                 }
27         }
28
29         public static final class Result_SecretKeySecpErrorZ_Err extends Result_SecretKeySecpErrorZ {
30                 public final LDKSecp256k1Error err;
31                 private Result_SecretKeySecpErrorZ_Err(Object _dummy, long ptr) {
32                         super(_dummy, ptr);
33                         this.err = bindings.LDKCResult_SecretKeySecpErrorZ_get_err(ptr);
34                 }
35                 public Result_SecretKeySecpErrorZ_Err(LDKSecp256k1Error err) {
36                         this(null, bindings.CResult_SecretKeySecpErrorZ_err(err));
37                 }
38         }
39 }