
com.sforce.soap.tooling.MlStandardSlotClass 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 MlStandardSlotClass {
/**
* 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"),
;
public static Map valuesToEnums;
static {
valuesToEnums = new HashMap();
for (MlStandardSlotClass e : EnumSet.allOf(MlStandardSlotClass.class)) {
valuesToEnums.put(e.toString(), e.name());
}
}
private String value;
private MlStandardSlotClass(String value) {
this.value = value;
}
@Override
public String toString() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy