public enum WarmupModeextends Enum<WarmupMode>
Enum Constant and Description |
---|
BULK Do the bulk warmup before any benchmark starts. |
BULK_INDI Do the bulk warmup before any benchmark starts, and then also do individual warmups for every benchmark. |
INDI Do the individual warmup for every benchmark |
Modifier and Type | Method and Description |
---|---|
boolean | isBulk() |
boolean | isIndi() |
static WarmupMode | valueOf(String name) Returns the enum constant of this type with the specified name. |
static WarmupMode[] | values() Returns an array containing the constants of this enum type, inthe order they are declared. |
public static final WarmupMode INDI
public static final WarmupMode BULK
public static final WarmupMode BULK_INDI
public static WarmupMode[] values()
for (WarmupMode c : WarmupMode.values()) System.out.println(c);
public static WarmupMode 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 nullpublic boolean isBulk()
public boolean isIndi()
Copyright © 2012-2015 Oracle. All Rights Reserved.