public static enum FunctionArguments.LOCATION extends java.lang.Enum<FunctionArguments.LOCATION> implements CASActionOptions.EnumValue
| Enum Constant and Description |
|---|
BIWEIGHT |
GEOMETRICMEAN |
HARMONICMEAN |
MEAN |
MEDIAN |
TRIMMEDMEAN |
WINSORIZEDMEAN |
| Modifier and Type | Method and Description |
|---|---|
static FunctionArguments.LOCATION |
getByValue(java.lang.String value) |
java.lang.String |
getValue() |
static FunctionArguments.LOCATION |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FunctionArguments.LOCATION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionArguments.LOCATION BIWEIGHT
public static final FunctionArguments.LOCATION GEOMETRICMEAN
public static final FunctionArguments.LOCATION HARMONICMEAN
public static final FunctionArguments.LOCATION MEAN
public static final FunctionArguments.LOCATION MEDIAN
public static final FunctionArguments.LOCATION TRIMMEDMEAN
public static final FunctionArguments.LOCATION WINSORIZEDMEAN
public static FunctionArguments.LOCATION[] values()
for (FunctionArguments.LOCATION c : FunctionArguments.LOCATION.values()) System.out.println(c);
public static FunctionArguments.LOCATION 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 getValue()
getValue in interface CASActionOptions.EnumValuepublic static FunctionArguments.LOCATION getByValue(java.lang.String value)