@Deprecated public static enum SqlAvgAggFunction.Subtype extends Enum<SqlAvgAggFunction.Subtype>
| Enum Constant and Description |
|---|
AVG
Deprecated.
|
STDDEV_POP
Deprecated.
|
STDDEV_SAMP
Deprecated.
|
VAR_POP
Deprecated.
|
VAR_SAMP
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static SqlAvgAggFunction.Subtype |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static SqlAvgAggFunction.Subtype[] |
values()
Deprecated.
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–2018 The Apache Software Foundation. All rights reserved.