Enum AssertionStdAggregation
- java.lang.Object
-
- java.lang.Enum<AssertionStdAggregation>
-
- io.datahubproject.openapi.generated.AssertionStdAggregation
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AssertionStdAggregation>
public enum AssertionStdAggregation extends java.lang.Enum<AssertionStdAggregation>
The function that is applied to the aggregation input (schema, rows, column values) before evaluating an operator.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description _NATIVE_COLUMN_COUNTCOLUMNSIDENTITYMAXMEANMEDIANMINNULL_COUNTNULL_PROPORTIONROW_COUNTSTDDEVSUMUNIQUE_COUNTUNIQUE_PROPORTIONUNIQUE_PROPOTION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AssertionStdAggregationfromValue(java.lang.String text)java.lang.StringtoString()static AssertionStdAggregationvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AssertionStdAggregation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROW_COUNT
public static final AssertionStdAggregation ROW_COUNT
-
COLUMNS
public static final AssertionStdAggregation COLUMNS
-
COLUMN_COUNT
public static final AssertionStdAggregation COLUMN_COUNT
-
IDENTITY
public static final AssertionStdAggregation IDENTITY
-
MEAN
public static final AssertionStdAggregation MEAN
-
MEDIAN
public static final AssertionStdAggregation MEDIAN
-
UNIQUE_COUNT
public static final AssertionStdAggregation UNIQUE_COUNT
-
UNIQUE_PROPORTION
public static final AssertionStdAggregation UNIQUE_PROPORTION
-
UNIQUE_PROPOTION
public static final AssertionStdAggregation UNIQUE_PROPOTION
-
NULL_COUNT
public static final AssertionStdAggregation NULL_COUNT
-
NULL_PROPORTION
public static final AssertionStdAggregation NULL_PROPORTION
-
STDDEV
public static final AssertionStdAggregation STDDEV
-
MIN
public static final AssertionStdAggregation MIN
-
MAX
public static final AssertionStdAggregation MAX
-
SUM
public static final AssertionStdAggregation SUM
-
_NATIVE_
public static final AssertionStdAggregation _NATIVE_
-
-
Method Detail
-
values
public static AssertionStdAggregation[] 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 (AssertionStdAggregation c : AssertionStdAggregation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AssertionStdAggregation valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<AssertionStdAggregation>
-
fromValue
public static AssertionStdAggregation fromValue(java.lang.String text)
-
-