Enum WarmupMode

    • Enum Constant Detail

      • INDI

        public static final WarmupMode INDI
        Do the individual warmup for every benchmark
      • BULK

        public static final WarmupMode BULK
        Do the bulk warmup before any benchmark starts.
      • BULK_INDI

        public static final WarmupMode BULK_INDI
        Do the bulk warmup before any benchmark starts, and then also do individual warmups for every benchmark.
    • Method Detail

      • values

        public static WarmupMode[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (WarmupMode c : WarmupMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static WarmupMode valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • isBulk

        public boolean isBulk()
      • isIndi

        public boolean isIndi()