[C#] Update auto-generated files
[ldk-java] / c_sharp / src / org / ldk / structs / Option_WriteableScoreZ.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::scoring::WriteableScore or not
10  */
11 public class Option_WriteableScoreZ : CommonBase {
12         protected Option_WriteableScoreZ(object _dummy, long ptr) : base(ptr) { }
13         ~Option_WriteableScoreZ() {
14                 if (ptr != 0) { bindings.COption_WriteableScoreZ_free(ptr); }
15         }
16
17         internal static Option_WriteableScoreZ constr_from_ptr(long ptr) {
18                 long raw_ty = bindings.LDKCOption_WriteableScoreZ_ty_from_ptr(ptr);
19                 switch (raw_ty) {
20                         case 0: return new Option_WriteableScoreZ_Some(ptr);
21                         case 1: return new Option_WriteableScoreZ_None(ptr);
22                         default:
23                                 throw new ArgumentException("Impossible enum variant");
24                 }
25         }
26
27         /** A Option_WriteableScoreZ of type Some */
28         public class Option_WriteableScoreZ_Some : Option_WriteableScoreZ {
29                 public WriteableScore some;
30                 internal Option_WriteableScoreZ_Some(long ptr) : base(null, ptr) {
31                         long some = bindings.LDKCOption_WriteableScoreZ_Some_get_some(ptr);
32                         WriteableScore ret_hu_conv = new WriteableScore(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_WriteableScoreZ of type None */
38         public class Option_WriteableScoreZ_None : Option_WriteableScoreZ {
39                 internal Option_WriteableScoreZ_None(long ptr) : base(null, ptr) {
40                 }
41         }
42         /**
43          * Constructs a new COption_WriteableScoreZ containing a crate::lightning::routing::scoring::WriteableScore
44          */
45         public static Option_WriteableScoreZ some(org.ldk.structs.WriteableScore o) {
46                 long ret = bindings.COption_WriteableScoreZ_some(o.ptr);
47                 GC.KeepAlive(o);
48                 if (ret >= 0 && ret <= 4096) { return null; }
49                 org.ldk.structs.Option_WriteableScoreZ ret_hu_conv = org.ldk.structs.Option_WriteableScoreZ.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_WriteableScoreZ containing nothing
57          */
58         public static Option_WriteableScoreZ none() {
59                 long ret = bindings.COption_WriteableScoreZ_none();
60                 if (ret >= 0 && ret <= 4096) { return null; }
61                 org.ldk.structs.Option_WriteableScoreZ ret_hu_conv = org.ldk.structs.Option_WriteableScoreZ.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 } } }