[Java] Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / enums / Currency.java
1 package org.ldk.enums;
2
3 /**
4  * Enum representing the crypto currencies (or networks) supported by this library
5  */
6 public enum Currency {
7         /**
8          * Bitcoin mainnet
9          */
10         LDKCurrency_Bitcoin,
11         /**
12          * Bitcoin testnet
13          */
14         LDKCurrency_BitcoinTestnet,
15         /**
16          * Bitcoin regtest
17          */
18         LDKCurrency_Regtest,
19         /**
20          * Bitcoin simnet
21          */
22         LDKCurrency_Simnet,
23         /**
24          * Bitcoin signet
25          */
26         LDKCurrency_Signet,
27         ; static native void init();
28         static { org.ldk.impl.bindings.run_statics(); init(); }
29 }