All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.targomo.client.api.request.enums.StatisticMethod Maven / Gradle / Ivy

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