package com.sforce.soap.metadata; 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 RecommendationChannel { /** * Enumeration : DefaultChannel */ DefaultChannel("DefaultChannel"), /** * Enumeration : CustomChannel1 */ CustomChannel1("CustomChannel1"), /** * Enumeration : CustomChannel2 */ CustomChannel2("CustomChannel2"), /** * Enumeration : CustomChannel3 */ CustomChannel3("CustomChannel3"), /** * Enumeration : CustomChannel4 */ CustomChannel4("CustomChannel4"), /** * Enumeration : CustomChannel5 */ CustomChannel5("CustomChannel5"), ; public static Map valuesToEnums; static { valuesToEnums = new HashMap(); for (RecommendationChannel e : EnumSet.allOf(RecommendationChannel.class)) { valuesToEnums.put(e.toString(), e.name()); } } private String value; private RecommendationChannel(String value) { this.value = value; } @Override public String toString() { return value; } }