public enum PilotStandardFunction extends Enum<PilotStandardFunction> implements PilotFunction
| Enum Constant and Description |
|---|
AUTO
no function is applied to that category field.
|
AVERAGE
the average of all numeric values.
|
COUNT
the count of all non-empty values, including text.
|
COUNT_NUMS
the count of all numeric values.
|
MAX
the maximum of all numeric values.
|
MIN
the minimum of all numeric values.
|
PRODUCT
the product of all numeric values.
|
ST_DEV
the standard deviation, treating all numeric values as a sample from a population.
|
ST_DEVP
the standard deviation, treating all numeric values as a whole population.
|
SUM
the sum of all numeric values.
|
VAR
the variance, treating all numeric values as a sample from a population.
|
VARP
the variance, treating all numeric values as a whole population.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
String |
toString() |
static PilotStandardFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PilotStandardFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PilotStandardFunction AVERAGE
public static final PilotStandardFunction COUNT
public static final PilotStandardFunction COUNT_NUMS
public static final PilotStandardFunction MAX
public static final PilotStandardFunction MIN
public static final PilotStandardFunction PRODUCT
public static final PilotStandardFunction ST_DEV
public static final PilotStandardFunction ST_DEVP
public static final PilotStandardFunction SUM
public static final PilotStandardFunction VAR
public static final PilotStandardFunction VARP
public static final PilotStandardFunction AUTO
public static PilotStandardFunction[] values()
for (PilotStandardFunction c : PilotStandardFunction.values()) System.out.println(c);
public static PilotStandardFunction 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 nullpublic String toString()
toString in class Enum<PilotStandardFunction>public String getValue()
getValue in interface AttributeValueCopyright © 2016–2021. All rights reserved.