Enum Class OutlierMethod

java.lang.Object
java.lang.Enum<OutlierMethod>
com.dataai.etl.spark.functions.OutlierMethod
All Implemented Interfaces:
Serializable, Comparable<OutlierMethod>, Constable

public enum OutlierMethod extends Enum<OutlierMethod>
  • Enum Constant Details

    • STANDARD_DEVIATION

      public static final OutlierMethod STANDARD_DEVIATION
    • PERCENT_DIFFERENCE

      public static final OutlierMethod PERCENT_DIFFERENCE
    • BUSINESS_RANGE

      public static final OutlierMethod BUSINESS_RANGE
  • Method Details

    • values

      public static OutlierMethod[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static OutlierMethod valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null