Package org.springframework.aot.hint
Class ResourcePatternHints.Builder
java.lang.Object
org.springframework.aot.hint.ResourcePatternHints.Builder
- Enclosing class:
- ResourcePatternHints
Builder for 
ResourcePatternHints.- 
Method SummaryModifier and TypeMethodDescriptionExclude resources matching the specified patterns.excludes(TypeReference reachableType, String... excludes) Exclude resources matching the specified patterns.Include resources matching the specified patterns.includes(TypeReference reachableType, String... includes) Include resources matching the specified patterns.
- 
Method Details- 
includespublic ResourcePatternHints.Builder includes(@Nullable TypeReference reachableType, String... includes) Include resources matching the specified patterns.- Parameters:
- reachableType- the type that should be reachable for this hint to apply
- includes- the include patterns (see- ResourcePatternHintdocumentation)
- Returns:
- this, to facilitate method chaining
 
- 
includesInclude resources matching the specified patterns.- Parameters:
- includes- the include patterns (see- ResourcePatternHintdocumentation)
- Returns:
- this, to facilitate method chaining
 
- 
excludespublic ResourcePatternHints.Builder excludes(@Nullable TypeReference reachableType, String... excludes) Exclude resources matching the specified patterns.- Parameters:
- reachableType- the type that should be reachable for this hint to apply
- excludes- the exclude patterns (see- ResourcePatternHintdocumentation)
- Returns:
- this, to facilitate method chaining
 
- 
excludesExclude resources matching the specified patterns.- Parameters:
- excludes- the exclude patterns (see- ResourcePatternHintdocumentation)
- Returns:
- this, to facilitate method chaining
 
 
-