Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / BestBlock.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
8
9 /**
10  * The best known block as identified by its hash and height.
11  */
12 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
13 public class BestBlock extends CommonBase {
14         BestBlock(Object _dummy, long ptr) { super(ptr); }
15         @Override @SuppressWarnings("deprecation")
16         protected void finalize() throws Throwable {
17                 super.finalize();
18                 if (ptr != 0) { bindings.BestBlock_free(ptr); }
19         }
20
21         /**
22          * Creates a copy of the BestBlock
23          */
24         public BestBlock clone() {
25                 long ret = bindings.BestBlock_clone(this.ptr);
26                 BestBlock ret_hu_conv = new BestBlock(null, ret);
27                 ret_hu_conv.ptrs_to.add(this);
28                 return ret_hu_conv;
29         }
30
31         /**
32          * Returns the best block from the genesis of the given network.
33          */
34         public static BestBlock constructor_from_genesis(LDKNetwork network) {
35                 long ret = bindings.BestBlock_from_genesis(network);
36                 BestBlock ret_hu_conv = new BestBlock(null, ret);
37                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
38                 return ret_hu_conv;
39         }
40
41         /**
42          * Returns the best block as identified by the given block hash and height.
43          */
44         public static BestBlock constructor_new(byte[] block_hash, int height) {
45                 long ret = bindings.BestBlock_new(block_hash, height);
46                 BestBlock ret_hu_conv = new BestBlock(null, ret);
47                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
48                 return ret_hu_conv;
49         }
50
51         /**
52          * Returns the best block hash.
53          */
54         public byte[] block_hash() {
55                 byte[] ret = bindings.BestBlock_block_hash(this.ptr);
56                 return ret;
57         }
58
59         /**
60          * Returns the best block height.
61          */
62         public int height() {
63                 int ret = bindings.BestBlock_height(this.ptr);
64                 return ret;
65         }
66
67 }