com.targomo.client.api.pojo.LocationProperties 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.pojo;
import lombok.*;
// Only relevant for POI service's gravitation requests (and quality requests)
// gravitationAttractionStrength is the only attribute used by quality requests, therefore the constructor with only that
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
@EqualsAndHashCode
@ToString(includeFieldNames=true)
public class LocationProperties {
private Float inputFactor;
private Boolean gravitationPositiveInfluence;
private Double gravitationAttractionStrength;
public LocationProperties(Double gravitationAttractionStrength) {
this.gravitationAttractionStrength = gravitationAttractionStrength;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy