Interface BeanNameCacheResult
-
public interface BeanNameCacheResult
Result of a call to the BeanNameTypeCache.get method. This is used to distinguish between caching null a look result and values not yet in the cache.- Since:
- 4.2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String[]
getResult()
Returns the result stored in the cache.
-
-
-
Method Detail
-
getResult
String[] getResult()
Returns the result stored in the cache. Note that this result can be null if no beans existed for the given key. Implementers should ensure that the modifications to the returned array does not influence the stored value.- Returns:
- value of the result.
-
-