Package com.sforce.soap.metadata
Enum MlModelDeployStatus
- java.lang.Object
-
- java.lang.Enum<MlModelDeployStatus>
-
- com.sforce.soap.metadata.MlModelDeployStatus
-
- All Implemented Interfaces:
Serializable,Comparable<MlModelDeployStatus>
public enum MlModelDeployStatus extends Enum<MlModelDeployStatus>
This is a generated class for the SObject Enterprise API. Do not edit this file, as your changes will be lost.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVATEDEnumeration : ACTIVATEDDEACTIVATEDEnumeration : DEACTIVATEDDRAFTEnumeration : DRAFTFAILEDEnumeration : FAILEDREGISTEREDEnumeration : REGISTERED
-
Field Summary
Fields Modifier and Type Field Description static Map<String,String>valuesToEnums
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static MlModelDeployStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static MlModelDeployStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DRAFT
public static final MlModelDeployStatus DRAFT
Enumeration : DRAFT
-
REGISTERED
public static final MlModelDeployStatus REGISTERED
Enumeration : REGISTERED
-
ACTIVATED
public static final MlModelDeployStatus ACTIVATED
Enumeration : ACTIVATED
-
DEACTIVATED
public static final MlModelDeployStatus DEACTIVATED
Enumeration : DEACTIVATED
-
FAILED
public static final MlModelDeployStatus FAILED
Enumeration : FAILED
-
-
Method Detail
-
values
public static MlModelDeployStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MlModelDeployStatus c : MlModelDeployStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MlModelDeployStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<MlModelDeployStatus>
-
-