public enum AccumulatorSetMode extends java.lang.Enum<AccumulatorSetMode>
| Enum Constant and Description |
|---|
COMBINED
Combined, all in one chart.
|
MULTIPLE
Multiple charts, every chart for itself.
|
NORMALIZED
Combined, all in one chart and normalized by 100 (each value is a percentage value to its relative max).
|
| Modifier and Type | Method and Description |
|---|---|
static AccumulatorSetMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccumulatorSetMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccumulatorSetMode COMBINED
public static final AccumulatorSetMode NORMALIZED
public static final AccumulatorSetMode MULTIPLE
public static AccumulatorSetMode[] values()
for (AccumulatorSetMode c : AccumulatorSetMode.values()) System.out.println(c);
public static AccumulatorSetMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2010-2020 anotheria.net. All Rights Reserved.