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 TranslationAspect { /** * Enumeration : Master */ Master("Master"), /** * Enumeration : RelationshipLabel */ RelationshipLabel("RelationshipLabel"), /** * Enumeration : Description */ Description("Description"), /** * Enumeration : Help */ Help("Help"), /** * Enumeration : NameFieldLabel */ NameFieldLabel("NameFieldLabel"), /** * Enumeration : ErrorMessage */ ErrorMessage("ErrorMessage"), /** * Enumeration : InfoMessage */ InfoMessage("InfoMessage"), /** * Enumeration : PausedText */ PausedText("PausedText"), /** * Enumeration : InputLabel */ InputLabel("InputLabel"), /** * Enumeration : NextOrFinishLabel */ NextOrFinishLabel("NextOrFinishLabel"), /** * Enumeration : BackLabel */ BackLabel("BackLabel"), /** * Enumeration : PauseLabel */ PauseLabel("PauseLabel"), /** * Enumeration : FirstName */ FirstName("FirstName"), /** * Enumeration : LastName */ LastName("LastName"), /** * Enumeration : MiddleName */ MiddleName("MiddleName"), /** * Enumeration : Salutation */ Salutation("Salutation"), /** * Enumeration : Suffix */ Suffix("Suffix"), /** * Enumeration : InformalName */ InformalName("InformalName"), /** * Enumeration : Title */ Title("Title"), /** * Enumeration : Phone */ Phone("Phone"), /** * Enumeration : Email */ Email("Email"), /** * Enumeration : Address */ Address("Address"), /** * Enumeration : Street */ Street("Street"), /** * Enumeration : City */ City("City"), /** * Enumeration : State */ State("State"), /** * Enumeration : StateCode */ StateCode("StateCode"), /** * Enumeration : PostalCode */ PostalCode("PostalCode"), /** * Enumeration : Country */ Country("Country"), /** * Enumeration : CountryCode */ CountryCode("CountryCode"), /** * Enumeration : Latitude */ Latitude("Latitude"), /** * Enumeration : Longitude */ Longitude("Longitude"), /** * Enumeration : Body */ Body("Body"), /** * Enumeration : Summary */ Summary("Summary"), /** * Enumeration : Url */ Url("Url"), /** * Enumeration : ActionButtonLink */ ActionButtonLink("ActionButtonLink"), /** * Enumeration : ActionButtonLabel */ ActionButtonLabel("ActionButtonLabel"), /** * Enumeration : DismissButtonLabel */ DismissButtonLabel("DismissButtonLabel"), /** * Enumeration : Header */ Header("Header"), /** * Enumeration : VideoLink */ VideoLink("VideoLink"), /** * Enumeration : ImageAltText */ ImageAltText("ImageAltText"), /** * Enumeration : ImageLink */ ImageLink("ImageLink"), /** * Enumeration : Custom */ Custom("Custom"), /** * Enumeration : DefaultValue */ DefaultValue("DefaultValue"), /** * Enumeration : Version */ Version("Version"), /** * Enumeration : AttributeName */ AttributeName("AttributeName"), /** * Enumeration : UsageType */ UsageType("UsageType"), /** * Enumeration : ProcessName */ ProcessName("ProcessName"), /** * Enumeration : GroupName */ GroupName("GroupName"), /** * Enumeration : Label */ Label("Label"), /** * Enumeration : ParameterValue */ ParameterValue("ParameterValue"), ; public static Map valuesToEnums; static { valuesToEnums = new HashMap(); for (TranslationAspect e : EnumSet.allOf(TranslationAspect.class)) { valuesToEnums.put(e.toString(), e.name()); } } private String value; private TranslationAspect(String value) { this.value = value; } @Override public String toString() { return value; } }