
org.opentripplanner.openstreetmap.wayproperty.MixinProperties 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
The newest version!
package org.opentripplanner.openstreetmap.wayproperty;
import org.opentripplanner.openstreetmap.wayproperty.specifier.OsmSpecifier;
/**
* Mixins are like {@link WayProperties} but they only contain walk and bicycle safety features (not
* modes).
*
* They don't override other properties but their safety values are multiplied with the existing
* values. As opposed to way properties, more than one mixins can apply to a single way.
*/
public record MixinProperties(
OsmSpecifier specifier,
SafetyFeatures walkSafety,
SafetyFeatures bicycleSafety
) {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy