Update auto-generated bindings with missed files and v0.0.98 tags
[ldk-java] / src / main / java / org / ldk / structs / PrivateRoute.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  * Private routing information
11  * 
12  * # Invariants
13  * The encoded route has to be <1024 5bit characters long (<=639 bytes or <=12 hops)
14  */
15 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
16 public class PrivateRoute extends CommonBase {
17         PrivateRoute(Object _dummy, long ptr) { super(ptr); }
18         @Override @SuppressWarnings("deprecation")
19         protected void finalize() throws Throwable {
20                 super.finalize();
21                 if (ptr != 0) { bindings.PrivateRoute_free(ptr); }
22         }
23
24         /**
25          * Checks if two PrivateRoutes contain equal inner contents.
26          * This ignores pointers and is_owned flags and looks at the values in fields.
27          * Two objects with NULL inner values will be considered "equal" here.
28          */
29         public boolean eq(PrivateRoute b) {
30                 boolean ret = bindings.PrivateRoute_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
31                 this.ptrs_to.add(b);
32                 return ret;
33         }
34
35         /**
36          * Creates a copy of the PrivateRoute
37          */
38         public PrivateRoute clone() {
39                 long ret = bindings.PrivateRoute_clone(this.ptr);
40                 PrivateRoute ret_hu_conv = new PrivateRoute(null, ret);
41                 ret_hu_conv.ptrs_to.add(this);
42                 return ret_hu_conv;
43         }
44
45         /**
46          * Creates a new (partial) route from a list of hops
47          */
48         public static Result_PrivateRouteCreationErrorZ of(RouteHint hops) {
49                 long ret = bindings.PrivateRoute_new(hops == null ? 0 : hops.ptr & ~1);
50                 Result_PrivateRouteCreationErrorZ ret_hu_conv = Result_PrivateRouteCreationErrorZ.constr_from_ptr(ret);
51                 ret_hu_conv.ptrs_to.add(hops);
52                 return ret_hu_conv;
53         }
54
55         /**
56          * Returns the underlying list of hops
57          */
58         public RouteHint into_inner() {
59                 long ret = bindings.PrivateRoute_into_inner(this.ptr);
60                 RouteHint ret_hu_conv = new RouteHint(null, ret);
61                 ret_hu_conv.ptrs_to.add(this);
62                 this.ptrs_to.add(this);
63                 return ret_hu_conv;
64         }
65
66 }