Enum HealthProperties.Show

java.lang.Object
java.lang.Enum<HealthProperties.Show>
org.springframework.boot.actuate.autoconfigure.health.HealthProperties.Show
All Implemented Interfaces:
Serializable, Comparable<HealthProperties.Show>, Constable
Enclosing class:
HealthProperties

public static enum HealthProperties.Show extends Enum<HealthProperties.Show>
Options for showing items in responses from the HealthEndpoint web extensions.
  • Enum Constant Details

    • NEVER

      public static final HealthProperties.Show NEVER
      Never show the item in the response.
    • WHEN_AUTHORIZED

      public static final HealthProperties.Show WHEN_AUTHORIZED
      Show the item in the response when accessed by an authorized user.
    • ALWAYS

      public static final HealthProperties.Show ALWAYS
      Always show the item in the response.
  • Method Details

    • values

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

      public static HealthProperties.Show 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