com.targomo.client.api.quality.criterion.PoiReachabilityCriterionDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java client library for easy usage of Targomo web services.
The newest version!
package com.targomo.client.api.quality.criterion;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.targomo.client.api.statistic.PoiType;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.SuperBuilder;
import lombok.extern.jackson.Jacksonized;
import javax.validation.constraints.NotEmpty;
import java.util.Set;
@Getter
@EqualsAndHashCode(callSuper = true)
@Jacksonized
@SuperBuilder(toBuilder = true)
@ToString(callSuper = true)
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public class PoiReachabilityCriterionDefinition extends RoutingBasedCriterionDefinition implements PoiCriterionDefinition {
@NotEmpty
private final Set osmTypes;
private final Set referenceOsmTypes;
//Variable holder for a POI Tag e.g. capacity in bike parking osm data
private final String weightedBy;
private final Set exclude;
private final PoiMatchType match;
@Setter
private String poiServiceUrl;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy