org.opentripplanner.model.StreetNote 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.model;
import org.opentripplanner.util.I18NString;
import org.opentripplanner.util.NonLocalizedString;
import java.io.Serializable;
import java.util.Date;
public class StreetNote implements Serializable {
public final I18NString note;
public I18NString descriptionText;
public Date effectiveStartDate;
public Date effectiveEndDate;
public String url;
public StreetNote(I18NString note) {
this.note = note;
}
public StreetNote(String note) {
this.note = new NonLocalizedString(note);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy