186 lines
4.3 KiB
Java
186 lines
4.3 KiB
Java
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 ExtensionPointName {
|
|
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_Cart_Calculate
|
|
*/
|
|
Commerce_Domain_Cart_Calculate("Commerce_Domain_Cart_Calculate"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_Tax_CartCalculator
|
|
*/
|
|
Commerce_Domain_Tax_CartCalculator("Commerce_Domain_Tax_CartCalculator"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_Inventory_CartCalculator
|
|
*/
|
|
Commerce_Domain_Inventory_CartCalculator("Commerce_Domain_Inventory_CartCalculator"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_Promotions_CartCalculator
|
|
*/
|
|
Commerce_Domain_Promotions_CartCalculator("Commerce_Domain_Promotions_CartCalculator"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_Promotions_ShippingCalculator
|
|
*/
|
|
Commerce_Domain_Promotions_ShippingCalculator("Commerce_Domain_Promotions_ShippingCalculator"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_Pricing_CartCalculator
|
|
*/
|
|
Commerce_Domain_Pricing_CartCalculator("Commerce_Domain_Pricing_CartCalculator"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_Shipping_CartCalculator
|
|
*/
|
|
Commerce_Domain_Shipping_CartCalculator("Commerce_Domain_Shipping_CartCalculator"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_Inventory_Service
|
|
*/
|
|
Commerce_Domain_Inventory_Service("Commerce_Domain_Inventory_Service"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_Pricing_Service
|
|
*/
|
|
Commerce_Domain_Pricing_Service("Commerce_Domain_Pricing_Service"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_Tax_Service
|
|
*/
|
|
Commerce_Domain_Tax_Service("Commerce_Domain_Tax_Service"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_BuyerGroup_EvaluationService
|
|
*/
|
|
Commerce_Domain_BuyerGroup_EvaluationService("Commerce_Domain_BuyerGroup_EvaluationService"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_Checkout_CreateOrder
|
|
*/
|
|
Commerce_Domain_Checkout_CreateOrder("Commerce_Domain_Checkout_CreateOrder"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_Checkout_PlaceOrder
|
|
*/
|
|
Commerce_Domain_Checkout_PlaceOrder("Commerce_Domain_Checkout_PlaceOrder"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_Shipping_SplitShipment
|
|
*/
|
|
Commerce_Domain_Shipping_SplitShipment("Commerce_Domain_Shipping_SplitShipment"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Domain_OrderManagement_Product
|
|
*/
|
|
Commerce_Domain_OrderManagement_Product("Commerce_Domain_OrderManagement_Product"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Endpoint_Account_Addresses
|
|
*/
|
|
Commerce_Endpoint_Account_Addresses("Commerce_Endpoint_Account_Addresses"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Endpoint_Account_Address
|
|
*/
|
|
Commerce_Endpoint_Account_Address("Commerce_Endpoint_Account_Address"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Endpoint_Catalog_Products
|
|
*/
|
|
Commerce_Endpoint_Catalog_Products("Commerce_Endpoint_Catalog_Products"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Endpoint_Catalog_Product
|
|
*/
|
|
Commerce_Endpoint_Catalog_Product("Commerce_Endpoint_Catalog_Product"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Endpoint_Gift_Wraps
|
|
*/
|
|
Commerce_Endpoint_Gift_Wraps("Commerce_Endpoint_Gift_Wraps"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Endpoint_Search_Products
|
|
*/
|
|
Commerce_Endpoint_Search_Products("Commerce_Endpoint_Search_Products"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Endpoint_Search_ProductSearch
|
|
*/
|
|
Commerce_Endpoint_Search_ProductSearch("Commerce_Endpoint_Search_ProductSearch"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Endpoint_Search_ProductsByCategory
|
|
*/
|
|
Commerce_Endpoint_Search_ProductsByCategory("Commerce_Endpoint_Search_ProductsByCategory"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Endpoint_Cart_ItemCollection
|
|
*/
|
|
Commerce_Endpoint_Cart_ItemCollection("Commerce_Endpoint_Cart_ItemCollection"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Commerce_Endpoint_Cart_Item
|
|
*/
|
|
Commerce_Endpoint_Cart_Item("Commerce_Endpoint_Cart_Item"),
|
|
|
|
;
|
|
|
|
public static Map<String, String> valuesToEnums;
|
|
|
|
static {
|
|
valuesToEnums = new HashMap<String, String>();
|
|
for (ExtensionPointName e : EnumSet.allOf(ExtensionPointName.class)) {
|
|
valuesToEnums.put(e.toString(), e.name());
|
|
}
|
|
}
|
|
|
|
private String value;
|
|
|
|
private ExtensionPointName(String value) {
|
|
this.value = value;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return value;
|
|
}
|
|
}
|