Interface AutoConfigurationMetadata
public interface AutoConfigurationMetadata
Provides access to meta-data written by the auto-configure annotation processor.
- Since:
- 1.5.0
- Author:
- Phillip Webb
-
Method Summary
Modifier and TypeMethodDescriptionGet anString
value from the meta-data.Get anString
value from the meta-data.getInteger
(String className, String key) Get anInteger
value from the meta-data.getInteger
(String className, String key, Integer defaultValue) Get anInteger
value from the meta-data.Get aSet
value from the meta-data.Get aSet
value from the meta-data.boolean
wasProcessed
(String className) Returntrue
if the specified class name was processed by the annotation processor.
-
Method Details
-
wasProcessed
Returntrue
if the specified class name was processed by the annotation processor.- Parameters:
className
- the source class- Returns:
- if the class was processed
-
getInteger
Get anInteger
value from the meta-data.- Parameters:
className
- the source classkey
- the meta-data key- Returns:
- the meta-data value or
null
-
getInteger
Get anInteger
value from the meta-data.- Parameters:
className
- the source classkey
- the meta-data keydefaultValue
- the default value- Returns:
- the meta-data value or
defaultValue
-
getSet
Get aSet
value from the meta-data.- Parameters:
className
- the source classkey
- the meta-data key- Returns:
- the meta-data value or
null
-
getSet
Get aSet
value from the meta-data.- Parameters:
className
- the source classkey
- the meta-data keydefaultValue
- the default value- Returns:
- the meta-data value or
defaultValue
-
get
Get anString
value from the meta-data.- Parameters:
className
- the source classkey
- the meta-data key- Returns:
- the meta-data value or
null
-
get
Get anString
value from the meta-data.- Parameters:
className
- the source classkey
- the meta-data keydefaultValue
- the default value- Returns:
- the meta-data value or
defaultValue
-