public enum RecordingGranularity extends Enum<RecordingGranularity>
| Enum Constant and Description |
|---|
PER_ITERATION |
PER_ITERATION_TYPE |
| Modifier and Type | Method and Description |
|---|---|
static RecordingGranularity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecordingGranularity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordingGranularity PER_ITERATION
public static final RecordingGranularity PER_ITERATION_TYPE
public static RecordingGranularity[] values()
for (RecordingGranularity c : RecordingGranularity.values()) System.out.println(c);
public static RecordingGranularity 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 SPF4J. All rights reserved.