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

org.apache.camel.component.linkedin.api.Timegranularity Maven / Gradle / Ivy

There is a newer version: 2.15.6
Show newest version
/**
 * Created by Apache CXF WadlToJava code generator
**/
package org.apache.camel.component.linkedin.api;


public enum Timegranularity {
    DAY("day"),
    MONTH("month");
    private String value;
    private Timegranularity(String v) {
        this.value = v;
    }
    public static Timegranularity fromString(String value) {
        if (value != null) {
            for (Timegranularity v : Timegranularity.values()) {
                if (value.equalsIgnoreCase(v.value)) {
                    return v;
                }
            }
        }
        throw new IllegalArgumentException();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy