Enum DataQualityCountOperation
- Object
-
- Enum<DataQualityCountOperation>
-
- DataQualityCountOperation
-
- All Implemented Interfaces:
Serializable
,Comparable<DataQualityCountOperation>
@Deprecated public enum DataQualityCountOperation extends Enum<DataQualityCountOperation>
Deprecated.This enumeration will be removed in the future. This feature is being dropped, so no replacement will be available.The possible operations to be executed when retrieving and grouping together statistics.
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static DataQualityCountOperation
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static DataQualityCountOperation[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Sum
public static final DataQualityCountOperation Sum
Deprecated.
-
Minimum
public static final DataQualityCountOperation Minimum
Deprecated.
-
Maximum
public static final DataQualityCountOperation Maximum
Deprecated.
-
Average
public static final DataQualityCountOperation Average
Deprecated.
-
Median
public static final DataQualityCountOperation Median
Deprecated.
-
BooleanAnd
public static final DataQualityCountOperation BooleanAnd
Deprecated.
-
BooleanOr
public static final DataQualityCountOperation BooleanOr
Deprecated.
-
-
Method Detail
-
values
public static DataQualityCountOperation[] values()
Deprecated.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 (DataQualityCountOperation c : DataQualityCountOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataQualityCountOperation valueOf(String name)
Deprecated.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
-
-