org.opentripplanner.geocoder.yahoo.YahooJsonDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.geocoder.yahoo;
import flexjson.JSONDeserializer;
public class YahooJsonDeserializer {
@SuppressWarnings("unchecked")
private JSONDeserializer jsonDeserializer;
@SuppressWarnings("unchecked")
public YahooJsonDeserializer() {
jsonDeserializer = new JSONDeserializer()
.use(null, YahooGeocoderResults.class);
}
public YahooGeocoderResults parseResults(String json) {
return (YahooGeocoderResults) jsonDeserializer.deserialize(json);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy