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 AssistantStandardSlotClass { /** * Enumeration : _Text */ _Text("_Text"), /** * Enumeration : _Boolean */ _Boolean("_Boolean"), /** * Enumeration : _DateTime */ _DateTime("_DateTime"), /** * Enumeration : _Date */ _Date("_Date"), /** * Enumeration : _Money */ _Money("_Money"), /** * Enumeration : _Number */ _Number("_Number"), /** * Enumeration : _Object */ _Object("_Object"), /** * Enumeration : _Person */ _Person("_Person"), /** * Enumeration : _Location */ _Location("_Location"), /** * Enumeration : _Organization */ _Organization("_Organization"), /** * Enumeration : _Percent */ _Percent("_Percent"), /** * Enumeration : _Phone */ _Phone("_Phone"), /** * Enumeration : _Email */ _Email("_Email"), /** * Enumeration : _Time */ _Time("_Time"), /** * Enumeration : _Url */ _Url("_Url"), ; public static Map valuesToEnums; static { valuesToEnums = new HashMap(); for (AssistantStandardSlotClass e : EnumSet.allOf(AssistantStandardSlotClass.class)) { valuesToEnums.put(e.toString(), e.name()); } } private String value; private AssistantStandardSlotClass(String value) { this.value = value; } @Override public String toString() { return value; } }