Loading...
Searching...
No Matches
RouteOptions.java
Go to the documentation of this file.
1package com.navigine.idl.java;
2
15public final class RouteOptions {
16
17
18 /*package*/ final Double smoothRadius;
19
20 /*package*/ final Double maxProjectionDistance;
21
22 /*package*/ final Double maxAdvance;
23
28 Double smoothRadius,
29 Double maxProjectionDistance,
30 Double maxAdvance) {
31 this.smoothRadius = smoothRadius;
32 this.maxProjectionDistance = maxProjectionDistance;
33 this.maxAdvance = maxAdvance;
34 }
35
43 public Double getSmoothRadius() {
44 return smoothRadius;
45 }
46
54 public Double getMaxProjectionDistance() {
55 return maxProjectionDistance;
56 }
57
64 public Double getMaxAdvance() {
65 return maxAdvance;
66 }
67
68 @Override
69 public String toString() {
70 return "RouteOptions{" +
71 "smoothRadius=" + smoothRadius +
72 "," + "maxProjectionDistance=" + maxProjectionDistance +
73 "," + "maxAdvance=" + maxAdvance +
74 "}";
75 }
76
77}