Enum Class ChaosTarget

java.lang.Object
java.lang.Enum<ChaosTarget>
de.codecentric.spring.boot.chaos.monkey.component.ChaosTarget
All Implemented Interfaces:
Serializable, Comparable<ChaosTarget>, Constable

public enum ChaosTarget extends Enum<ChaosTarget>
  • Enum Constant Details

    • CONTROLLER

      public static final ChaosTarget CONTROLLER
    • REST_CONTROLLER

      public static final ChaosTarget REST_CONTROLLER
    • REPOSITORY

      public static final ChaosTarget REPOSITORY
    • COMPONENT

      public static final ChaosTarget COMPONENT
    • SERVICE

      public static final ChaosTarget SERVICE
    • REST_TEMPLATE

      public static final ChaosTarget REST_TEMPLATE
    • WEB_CLIENT

      public static final ChaosTarget WEB_CLIENT
    • ACTUATOR_HEALTH

      public static final ChaosTarget ACTUATOR_HEALTH
    • BEAN

      public static final ChaosTarget BEAN
  • Method Details

    • values

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