Update auto-generated bindings with missed files and v0.0.98 tags
[ldk-java] / ts / structs / PrivateRoute.ts
1
2             
3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
5
6
7
8             export default class PrivateRoute extends CommonBase {
9                 constructor(_dummy: object, ptr: number) {
10                     super(ptr);
11                 }
12
13                 
14                 protected finalize() {
15                     super.finalize();
16
17                     if (this.ptr != 0) {
18                         bindings.PrivateRoute_free(this.ptr);
19                     }
20                 }
21         public boolean eq(PrivateRoute b) {
22                 boolean ret = bindings.PrivateRoute_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
23                 this.ptrs_to.add(b);
24                 return ret;
25         }
26
27         public PrivateRoute clone() {
28                 number ret = bindings.PrivateRoute_clone(this.ptr);
29                 const ret_hu_conv: PrivateRoute = new PrivateRoute(null, ret);
30                 ret_hu_conv.ptrs_to.add(this);
31                 return ret_hu_conv;
32         }
33
34         public static Result_PrivateRouteCreationErrorZ constructor_new(RouteHint hops) {
35                 number ret = bindings.PrivateRoute_new(hops == null ? 0 : hops.ptr & ~1);
36                 Result_PrivateRouteCreationErrorZ ret_hu_conv = Result_PrivateRouteCreationErrorZ.constr_from_ptr(ret);
37                 ret_hu_conv.ptrs_to.add(hops);
38                 return ret_hu_conv;
39         }
40
41         public RouteHint into_inner() {
42                 number ret = bindings.PrivateRoute_into_inner(this.ptr);
43                 const ret_hu_conv: RouteHint = new RouteHint(null, ret);
44                 ret_hu_conv.ptrs_to.add(this);
45                 return ret_hu_conv;
46         }
47
48 }