Enum MLFieldType

    • 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 name
        NullPointerException - if the argument is null