Skip to content

Commit c437847

Browse files
committed
Add getter for encoded values string
1 parent 30aa296 commit c437847

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

core/src/main/java/com/graphhopper/GraphHopper.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,19 @@ public GraphHopper setEncodedValuesString(String encodedValuesString) {
138138
return this;
139139
}
140140

141+
public String getEncodedValuesString() {
142+
return encodedValuesString;
143+
}
144+
141145
public GraphHopper setVehiclesString(String vehiclesString) {
142146
this.vehiclesString = vehiclesString;
143147
return this;
144148
}
145149

150+
public String getVehiclesString() {
151+
return vehiclesString;
152+
}
153+
146154
public EncodingManager getEncodingManager() {
147155
if (encodingManager == null)
148156
throw new IllegalStateException("EncodingManager not yet built");

0 commit comments

Comments
 (0)