org.apache.camel.component.olingo2.internal.Olingo2ApiName Maven / Gradle / Ivy
/*
* Camel ApiName Enumeration generated by camel-api-component-maven-plugin
* Generated on: Sun Mar 27 21:33:39 UTC 2016
*/
package org.apache.camel.component.olingo2.internal;
import org.apache.camel.util.component.ApiName;
/**
* Camel {@link ApiName} Enumeration for Component Olingo2
*/
public enum Olingo2ApiName implements ApiName {
DEFAULT("");
private final String name;
private Olingo2ApiName(String name) {
this.name = name;
}
@Override
public String getName() {
return name;
}
public static Olingo2ApiName fromValue(String value) throws IllegalArgumentException {
for (Olingo2ApiName api : Olingo2ApiName.values()) {
if (api.name.equals(value)) {
return api;
}
}
throw new IllegalArgumentException("Invalid value " + value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy