org.apache.camel.component.olingo2.internal.Olingo2ApiName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-olingo2 Show documentation
Show all versions of camel-olingo2 Show documentation
Camel Component for Apache Olingo2
/*
* Camel ApiName Enumeration generated by camel-component-util-maven-plugin
* Generated on: Tue Mar 03 12:32:46 UTC 2015
*/
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