org.opentripplanner.geocoder.google.AddressComponent 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.google;
import java.util.List;
public class AddressComponent {
private String long_name;
private String short_name;
private List types;
public String getLong_name() {
return long_name;
}
public void setLong_name(String longName) {
long_name = longName;
}
public String getShort_name() {
return short_name;
}
public void setShort_name(String shortName) {
short_name = shortName;
}
public List getTypes() {
return types;
}
public void setTypes(List types) {
this.types = types;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy