Enum Class BeanOverrideStrategy
java.lang.Object
java.lang.Enum<BeanOverrideStrategy>
org.springframework.test.context.bean.override.BeanOverrideStrategy
- All Implemented Interfaces:
- Serializable, Comparable<BeanOverrideStrategy>, Constable
Strategies for bean override processing.
- Since:
- 6.2
- Author:
- Simon Baslé, Stephane Nicoll, Sam Brannen
- 
Nested Class SummaryNested classes/interfaces inherited from class EnumEnum.EnumDesc<E>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionReplace a given bean, immediately preparing a singleton instance.Replace or create a given bean, immediately preparing a singleton instance.Intercept and process an early bean reference, allowing variants of bean overriding to wrap the original bean instance — for example, to delegate to actual methods in the context of a mocking "spy".
- 
Method SummaryModifier and TypeMethodDescriptionstatic BeanOverrideStrategyReturns the enum constant of this class with the specified name.static BeanOverrideStrategy[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
REPLACEReplace a given bean, immediately preparing a singleton instance.Fails if the original bean does not exist. To create a new bean in such a case, use REPLACE_OR_CREATEinstead.
- 
REPLACE_OR_CREATEReplace or create a given bean, immediately preparing a singleton instance.Contrary to REPLACE, this strategy creates a new bean if the target bean does not exist rather than failing.
- 
WRAPIntercept and process an early bean reference, allowing variants of bean overriding to wrap the original bean instance — for example, to delegate to actual methods in the context of a mocking "spy".
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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
 
 
-