public static enum UserDefined.ValueFunction extends Enum<UserDefined.ValueFunction>
Enum Constant and Description |
---|
AVERAGE |
MAX |
MIN |
SAMPLE_SIZE |
TOTAL |
Modifier and Type | Method and Description |
---|---|
String |
value() |
static UserDefined.ValueFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserDefined.ValueFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserDefined.ValueFunction AVERAGE
public static final UserDefined.ValueFunction MIN
public static final UserDefined.ValueFunction MAX
public static final UserDefined.ValueFunction TOTAL
public static final UserDefined.ValueFunction SAMPLE_SIZE
public static UserDefined.ValueFunction[] values()
for (UserDefined.ValueFunction c : UserDefined.ValueFunction.values()) System.out.println(c);
public static UserDefined.ValueFunction 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 value()
Copyright © 2018. All rights reserved.