Enum Class EvalType

java.lang.Object
java.lang.Enum<EvalType>
io.nosqlbench.scenarios.simframe.capture.EvalType
All Implemented Interfaces:
Serializable, Comparable<EvalType>, Constable

public enum EvalType extends Enum<EvalType>
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    At the beginning of a simulation frame, starting basis values and starting frame times are recorded.
    A basis value is read from a supplier directly at the end of a simulation frame with no additional computation.
    At the end of a simulation frame, any remix values are computed as a function over any previous defined basis values.
  • Method Summary

    Modifier and Type
    Method
    Description
    static EvalType
    Returns the enum constant of this class with the specified name.
    static EvalType[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • direct

      public static final EvalType direct
      A basis value is read from a supplier directly at the end of a simulation frame with no additional computation.
    • deltaT

      public static final EvalType deltaT
      At the beginning of a simulation frame, starting basis values and starting frame times are recorded. At the end of that simulation frame, ending basis values and ending time are record. The basis value is computed as ΔV/ΔT.
    • remix

      public static final EvalType remix
      At the end of a simulation frame, any remix values are computed as a function over any previous defined basis values.
  • Method Details

    • values

      public static EvalType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static EvalType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null