java.lang.Object
java.lang.Enum<SearchStrategy>
org.springframework.boot.autoconfigure.condition.SearchStrategy
All Implemented Interfaces:
Serializable, Comparable<SearchStrategy>, Constable

public enum SearchStrategy extends Enum<SearchStrategy>
Some named search strategies for beans in the bean factory hierarchy.
Since:
1.0.0
Author:
Dave Syer
  • Enum Constant Details

    • CURRENT

      public static final SearchStrategy CURRENT
      Search only the current context.
    • ANCESTORS

      public static final SearchStrategy ANCESTORS
      Search all ancestors, but not the current context.
    • ALL

      public static final SearchStrategy ALL
      Search the entire hierarchy.
  • Method Details

    • values

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