com.targomo.client.api.request.enums.StatisticMethod 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.request.enums;
/**
* Created by gerb on 01/03/2017.
*/
public enum StatisticMethod {
CHARTS_DEPENDENT("charts/dependent"),
CHARTS_INDEPENDENT("charts/independent");
private final String path;
StatisticMethod(String path) {
this.path = path;
}
public String getPath() {
return path;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy