public static enum SqlAvgAggFunction.Subtype extends Enum<SqlAvgAggFunction.Subtype>
| Enum Constant and Description |
|---|
AVG |
STDDEV_POP |
STDDEV_SAMP |
VAR_POP |
VAR_SAMP |
| Modifier and Type | Method and Description |
|---|---|
static SqlAvgAggFunction.Subtype |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlAvgAggFunction.Subtype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlAvgAggFunction.Subtype AVG
public static final SqlAvgAggFunction.Subtype STDDEV_POP
public static final SqlAvgAggFunction.Subtype STDDEV_SAMP
public static final SqlAvgAggFunction.Subtype VAR_POP
public static final SqlAvgAggFunction.Subtype VAR_SAMP
public static SqlAvgAggFunction.Subtype[] values()
for (SqlAvgAggFunction.Subtype c : SqlAvgAggFunction.Subtype.values()) System.out.println(c);
public static SqlAvgAggFunction.Subtype valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2012–2015 The Apache Software Foundation. All rights reserved.