public enum CountingMode extends Enum<CountingMode>
| Enum Constant and Description |
|---|
CUMULATIVE
Counts and totals are monotonically increasing.
|
STEP
Rate normalize counts and totals.
|
| Modifier and Type | Method and Description |
|---|---|
static CountingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CountingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CountingMode CUMULATIVE
public static final CountingMode STEP
public static CountingMode[] values()
for (CountingMode c : CountingMode.values()) System.out.println(c);
public static CountingMode 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 © 2020 LeanCloud. All rights reserved.