Enum Class Layer

java.lang.Object
java.lang.Enum<Layer>
io.nosqlbench.nb.api.annotations.Layer
All Implemented Interfaces:
Serializable, Comparable<Layer>, Constable

public enum Layer extends Enum<Layer>
  • 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
    Events which are associated with a particular activity instance, such as parameters, starting and stopping, and critical errors
    Events which are associated with a particular activity thread
    Events which are associated with a particular operation or op template
    Events which describe scenario execution, such as parameters, lifecycle events, interruptions, and critical errors
    Events which describe scripting details, such as commands, extension usages, sending programmatic annotations, or critical errors
    Events which describe command line arguments, such as parsing, named scenario mapping, or critical errors
  • Method Summary

    Modifier and Type
    Method
    Description
    static Layer
    Returns the enum constant of this class with the specified name.
    static Layer[]
    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

    • Session

      public static final Layer Session
      Events which describe command line arguments, such as parsing, named scenario mapping, or critical errors
    • Scenario

      public static final Layer Scenario
      Events which describe scenario execution, such as parameters, lifecycle events, interruptions, and critical errors
    • Script

      public static final Layer Script
      Events which describe scripting details, such as commands, extension usages, sending programmatic annotations, or critical errors
    • Activity

      public static final Layer Activity
      Events which are associated with a particular activity instance, such as parameters, starting and stopping, and critical errors
    • Motor

      public static final Layer Motor
      Events which are associated with a particular activity thread
    • Operation

      public static final Layer Operation
      Events which are associated with a particular operation or op template
  • Method Details

    • values

      public static Layer[] 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 Layer 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