CSharp: fix LDKStr array decoding
[ldk-java] / c_sharp / src / org / ldk / structs / Option_UtxoLookupZ.cs
1 using org.ldk.impl;
2 using org.ldk.enums;
3 using org.ldk.util;
4 using System;
5
6 namespace org { namespace ldk { namespace structs {
7
8 /**
9  * An enum which can either contain a crate::lightning::routing::utxo::UtxoLookup or not
10  */
11 public class Option_UtxoLookupZ : CommonBase {
12         protected Option_UtxoLookupZ(object _dummy, long ptr) : base(ptr) { }
13         ~Option_UtxoLookupZ() {
14                 if (ptr != 0) { bindings.COption_UtxoLookupZ_free(ptr); }
15         }
16
17         internal static Option_UtxoLookupZ constr_from_ptr(long ptr) {
18                 long raw_ty = bindings.LDKCOption_UtxoLookupZ_ty_from_ptr(ptr);
19                 switch (raw_ty) {
20                         case 0: return new Option_UtxoLookupZ_Some(ptr);
21                         case 1: return new Option_UtxoLookupZ_None(ptr);
22                         default:
23                                 throw new ArgumentException("Impossible enum variant");
24                 }
25         }
26
27         /** A Option_UtxoLookupZ of type Some */
28         public class Option_UtxoLookupZ_Some : Option_UtxoLookupZ {
29                 public UtxoLookup some;
30                 internal Option_UtxoLookupZ_Some(long ptr) : base(null, ptr) {
31                         long some = bindings.LDKCOption_UtxoLookupZ_Some_get_some(ptr);
32                         UtxoLookup ret_hu_conv = new UtxoLookup(null, some);
33                         if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
34                         this.some = ret_hu_conv;
35                 }
36         }
37         /** A Option_UtxoLookupZ of type None */
38         public class Option_UtxoLookupZ_None : Option_UtxoLookupZ {
39                 internal Option_UtxoLookupZ_None(long ptr) : base(null, ptr) {
40                 }
41         }
42         /**
43          * Constructs a new COption_UtxoLookupZ containing a crate::lightning::routing::utxo::UtxoLookup
44          */
45         public static Option_UtxoLookupZ some(org.ldk.structs.UtxoLookup o) {
46                 long ret = bindings.COption_UtxoLookupZ_some(o.ptr);
47                 GC.KeepAlive(o);
48                 if (ret >= 0 && ret <= 4096) { return null; }
49                 org.ldk.structs.Option_UtxoLookupZ ret_hu_conv = org.ldk.structs.Option_UtxoLookupZ.constr_from_ptr(ret);
50                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
51                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(o); };
52                 return ret_hu_conv;
53         }
54
55         /**
56          * Constructs a new COption_UtxoLookupZ containing nothing
57          */
58         public static Option_UtxoLookupZ none() {
59                 long ret = bindings.COption_UtxoLookupZ_none();
60                 if (ret >= 0 && ret <= 4096) { return null; }
61                 org.ldk.structs.Option_UtxoLookupZ ret_hu_conv = org.ldk.structs.Option_UtxoLookupZ.constr_from_ptr(ret);
62                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
63                 return ret_hu_conv;
64         }
65
66 }
67 } } }