public static enum Accumulator.Type extends Enum<Accumulator.Type>
Modifier and Type | Method and Description |
---|---|
static Accumulator.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Accumulator.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Accumulator.Type SUM
public static final Accumulator.Type MAX
public static final Accumulator.Type MIN
public static final Accumulator.Type SEQ
public static Accumulator.Type[] values()
for (Accumulator.Type c : Accumulator.Type.values()) System.out.println(c);
public static Accumulator.Type 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 © 2025 Open Identity Platform Community. All rights reserved.