public enum EComputeFunctionType extends Enum<EComputeFunctionType>
Enum Constant and Description |
---|
cftAvg |
cftCount |
cftMax |
cftMin |
cftNone |
cftStdev |
cftStdevp |
cftSum |
cftVar |
cftVarp |
Modifier and Type | Method and Description |
---|---|
static EComputeFunctionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EComputeFunctionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EComputeFunctionType cftNone
public static final EComputeFunctionType cftAvg
public static final EComputeFunctionType cftCount
public static final EComputeFunctionType cftMax
public static final EComputeFunctionType cftMin
public static final EComputeFunctionType cftStdev
public static final EComputeFunctionType cftStdevp
public static final EComputeFunctionType cftVar
public static final EComputeFunctionType cftVarp
public static final EComputeFunctionType cftSum
public static EComputeFunctionType[] values()
for (EComputeFunctionType c : EComputeFunctionType.values()) System.out.println(c);
public static EComputeFunctionType 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 © 2019. All rights reserved.