Loading...
Searching...
No Matches
RouteOptions.java
Go to the documentation of this file.
1package com.navigine.idl.java;
2
24public final class RouteOptions {
25
26
27 /*package*/ final Double smoothRadius;
28
29 /*package*/ final Double maxProjectionDistance;
30
31 /*package*/ final Double maxAdvance;
32
37 Double smoothRadius,
38 Double maxProjectionDistance,
39 Double maxAdvance) {
40 this.smoothRadius = smoothRadius;
41 this.maxProjectionDistance = maxProjectionDistance;
42 this.maxAdvance = maxAdvance;
43 }
44
52 public Double getSmoothRadius() {
53 return smoothRadius;
54 }
55
63 public Double getMaxProjectionDistance() {
64 return maxProjectionDistance;
65 }
66
73 public Double getMaxAdvance() {
74 return maxAdvance;
75 }
76
77 @Override
78 public String toString() {
79 return "RouteOptions{" +
80 "smoothRadius=" + smoothRadius +
81 "," + "maxProjectionDistance=" + maxProjectionDistance +
82 "," + "maxAdvance=" + maxAdvance +
83 "}";
84 }
85
86}