public enum AssertionStdAggregation extends java.lang.Enum<AssertionStdAggregation>
| Enum Constant and Description |
|---|
_NATIVE_ |
COLUMN_COUNT |
COLUMNS |
IDENTITY |
MAX |
MEAN |
MEDIAN |
MIN |
NULL_COUNT |
NULL_PROPORTION |
ROW_COUNT |
STDDEV |
SUM |
UNIQUE_COUNT |
UNIQUE_PROPOTION |
| Modifier and Type | Method and Description |
|---|---|
static AssertionStdAggregation |
fromValue(java.lang.String text) |
java.lang.String |
toString() |
static AssertionStdAggregation |
valueOf(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.
|
public static final AssertionStdAggregation ROW_COUNT
public static final AssertionStdAggregation COLUMNS
public static final AssertionStdAggregation COLUMN_COUNT
public static final AssertionStdAggregation IDENTITY
public static final AssertionStdAggregation MEAN
public static final AssertionStdAggregation MEDIAN
public static final AssertionStdAggregation UNIQUE_COUNT
public static final AssertionStdAggregation UNIQUE_PROPOTION
public static final AssertionStdAggregation NULL_COUNT
public static final AssertionStdAggregation NULL_PROPORTION
public static final AssertionStdAggregation STDDEV
public static final AssertionStdAggregation MIN
public static final AssertionStdAggregation MAX
public static final AssertionStdAggregation SUM
public static final AssertionStdAggregation _NATIVE_
public static AssertionStdAggregation[] values()
for (AssertionStdAggregation c : AssertionStdAggregation.values()) System.out.println(c);
public static AssertionStdAggregation valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<AssertionStdAggregation>public static AssertionStdAggregation fromValue(java.lang.String text)