Package com.sforce.soap.metadata
Enum MLFieldType
- java.lang.Object
-
- java.lang.Enum<MLFieldType>
-
- com.sforce.soap.metadata.MLFieldType
-
- All Implemented Interfaces:
Serializable,Comparable<MLFieldType>
public enum MLFieldType extends Enum<MLFieldType>
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 ExcludedEnumeration : ExcludedExpressionEnumeration : ExpressionIncludedEnumeration : IncludedJoinEnumeration : JoinNegativeExpressionEnumeration : NegativeExpressionPositiveExpressionEnumeration : PositiveExpressionPredictionEnumeration : PredictionPushbackEnumeration : PushbackRelatedEnumeration : RelatedRetrieverEnumeration : RetrieverScoringExpressionEnumeration : ScoringExpressionSegmentExpressionEnumeration : SegmentExpressionSourceDateEnumeration : SourceDateTrainingExpressionEnumeration : TrainingExpression
-
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 MLFieldTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MLFieldType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Prediction
public static final MLFieldType Prediction
Enumeration : Prediction
-
Pushback
public static final MLFieldType Pushback
Enumeration : Pushback
-
Included
public static final MLFieldType Included
Enumeration : Included
-
Excluded
public static final MLFieldType Excluded
Enumeration : Excluded
-
Join
public static final MLFieldType Join
Enumeration : Join
-
Related
public static final MLFieldType Related
Enumeration : Related
-
Expression
public static final MLFieldType Expression
Enumeration : Expression
-
SegmentExpression
public static final MLFieldType SegmentExpression
Enumeration : SegmentExpression
-
TrainingExpression
public static final MLFieldType TrainingExpression
Enumeration : TrainingExpression
-
ScoringExpression
public static final MLFieldType ScoringExpression
Enumeration : ScoringExpression
-
PositiveExpression
public static final MLFieldType PositiveExpression
Enumeration : PositiveExpression
-
NegativeExpression
public static final MLFieldType NegativeExpression
Enumeration : NegativeExpression
-
SourceDate
public static final MLFieldType SourceDate
Enumeration : SourceDate
-
Retriever
public static final MLFieldType Retriever
Enumeration : Retriever
-
-
Method Detail
-
values
public static MLFieldType[] 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 (MLFieldType c : MLFieldType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MLFieldType 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<MLFieldType>
-
-