public static enum SqlCovarAggFunction.Subtype extends Enum<SqlCovarAggFunction.Subtype>
| Enum Constant and Description |
|---|
COVAR_POP |
COVAR_SAMP |
REGR_SXX |
REGR_SYY |
| Modifier and Type | Method and Description |
|---|---|
static SqlCovarAggFunction.Subtype |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlCovarAggFunction.Subtype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlCovarAggFunction.Subtype COVAR_POP
public static final SqlCovarAggFunction.Subtype COVAR_SAMP
public static final SqlCovarAggFunction.Subtype REGR_SXX
public static final SqlCovarAggFunction.Subtype REGR_SYY
public static SqlCovarAggFunction.Subtype[] values()
for (SqlCovarAggFunction.Subtype c : SqlCovarAggFunction.Subtype.values()) System.out.println(c);
public static SqlCovarAggFunction.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.