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