public enum MultiValueMode extends Enum<MultiValueMode>
| Modifier and Type | Method and Description |
|---|---|
static MultiValueMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MultiValueMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiValueMode UNKNOWN
public static final MultiValueMode MAX
public static final MultiValueMode MIN
public static final MultiValueMode SUM
public static final MultiValueMode AVG
public static MultiValueMode[] values()
for (MultiValueMode c : MultiValueMode.values()) System.out.println(c);
public static MultiValueMode 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 © 2024. All Rights Reserved.