Package com.sforce.soap.metadata
Enum MlInferenceFormat
- java.lang.Object
-
- java.lang.Enum<MlInferenceFormat>
-
- com.sforce.soap.metadata.MlInferenceFormat
-
- All Implemented Interfaces:
Serializable,Comparable<MlInferenceFormat>
public enum MlInferenceFormat extends Enum<MlInferenceFormat>
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 COLUMNAREnumeration : COLUMNARCSVEnumeration : CSVDATAFRAME_RECORDSEnumeration : DATAFRAME_RECORDSDATAFRAME_SPLITEnumeration : DATAFRAME_SPLITJSONEnumeration : JSONJSON_DENSEEnumeration : JSON_DENSEJSON_INSTANCESEnumeration : JSON_INSTANCES
-
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 MlInferenceFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static MlInferenceFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JSON_DENSE
public static final MlInferenceFormat JSON_DENSE
Enumeration : JSON_DENSE
-
CSV
public static final MlInferenceFormat CSV
Enumeration : CSV
-
JSON_INSTANCES
public static final MlInferenceFormat JSON_INSTANCES
Enumeration : JSON_INSTANCES
-
DATAFRAME_RECORDS
public static final MlInferenceFormat DATAFRAME_RECORDS
Enumeration : DATAFRAME_RECORDS
-
DATAFRAME_SPLIT
public static final MlInferenceFormat DATAFRAME_SPLIT
Enumeration : DATAFRAME_SPLIT
-
JSON
public static final MlInferenceFormat JSON
Enumeration : JSON
-
COLUMNAR
public static final MlInferenceFormat COLUMNAR
Enumeration : COLUMNAR
-
-
Method Detail
-
values
public static MlInferenceFormat[] 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 (MlInferenceFormat c : MlInferenceFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MlInferenceFormat 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<MlInferenceFormat>
-
-