
com.sforce.soap.tooling.ActionHttpMethod Maven / Gradle / Ivy
package com.sforce.soap.tooling;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.Map;
/**
* This is a generated class for the SObject Enterprise API.
* Do not edit this file, as your changes will be lost.
*/
public enum ActionHttpMethod {
/**
* Enumeration : GET
*/
GET("GET"),
/**
* Enumeration : PUT
*/
PUT("PUT"),
/**
* Enumeration : POST
*/
POST("POST"),
/**
* Enumeration : DELETE
*/
DELETE("DELETE"),
/**
* Enumeration : PATCH
*/
PATCH("PATCH"),
;
public static Map valuesToEnums;
static {
valuesToEnums = new HashMap();
for (ActionHttpMethod e : EnumSet.allOf(ActionHttpMethod.class)) {
valuesToEnums.put(e.toString(), e.name());
}
}
private String value;
private ActionHttpMethod(String value) {
this.value = value;
}
@Override
public String toString() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy