public static class NativeImageResourcePatternsBuildItem.Builder extends Object
| Constructor and Description |
|---|
Builder() |
| Modifier and Type | Method and Description |
|---|---|
NativeImageResourcePatternsBuildItem |
build() |
NativeImageResourcePatternsBuildItem.Builder |
excludeGlob(String glob)
Add a glob pattern for matching resource paths that should not be added to the native image.
|
NativeImageResourcePatternsBuildItem.Builder |
excludeGlobs(Collection<String> globs)
Add a collection of glob patterns for matching resource paths that should not be added to the
native image.
|
NativeImageResourcePatternsBuildItem.Builder |
excludeGlobs(String... globs)
Add an array of glob patterns for matching resource paths that should not be added to the
native image.
|
NativeImageResourcePatternsBuildItem.Builder |
excludePattern(String pattern)
Add a regular expression for matching resource paths that should not be added to the native
image.
|
NativeImageResourcePatternsBuildItem.Builder |
excludePatterns(Collection<String> patterns)
Add a collection of regular expressions for matching resource paths that should not be added
to the native image.
|
NativeImageResourcePatternsBuildItem.Builder |
excludePatterns(String... patterns)
Add an array of regular expressions for matching resource paths that should not be added
to the native image.
|
NativeImageResourcePatternsBuildItem.Builder |
includeGlob(String glob)
Add a glob pattern for matching resource paths that should be added to the native image.
|
NativeImageResourcePatternsBuildItem.Builder |
includeGlobs(Collection<String> globs)
Add a collection of glob patterns for matching resource paths that should be added to the native image.
|
NativeImageResourcePatternsBuildItem.Builder |
includeGlobs(String... patterns)
Add an array of glob patterns for matching resource paths that should be added to the native image.
|
NativeImageResourcePatternsBuildItem.Builder |
includePattern(String pattern)
Add a regular expression for matching resource paths that should be added to the native image.
|
NativeImageResourcePatternsBuildItem.Builder |
includePatterns(Collection<String> patterns)
Add a collection of regular expressions for matching resource paths that should be added to the native image.
|
NativeImageResourcePatternsBuildItem.Builder |
includePatterns(String... patterns)
Add an array of regular expressions for matching resource paths that should be added to the native image.
|
public NativeImageResourcePatternsBuildItem build()
public NativeImageResourcePatternsBuildItem.Builder excludeGlob(String glob)
Use slash (/) as a path separator on all platforms. Globs must not start with slash. See
NativeConfig.ResourcesConfig#includes for the supported glob syntax.
glob - the glob pattern to add to the list of patterns to excludeNativeImageResourcePatternsBuildItem.Builderpublic NativeImageResourcePatternsBuildItem.Builder excludeGlobs(Collection<String> globs)
Use slash (/) as a path separator on all platforms. Globs must not start with slash. See
NativeConfig.ResourcesConfig#includes for the supported glob syntax.
globs - the glob patterns to add to the list of patterns to excludeNativeImageResourcePatternsBuildItem.Builderpublic NativeImageResourcePatternsBuildItem.Builder excludeGlobs(String... globs)
Use slash (/) as a path separator on all platforms. Globs must not start with slash. See
NativeConfig.ResourcesConfig#includes for the supported glob syntax.
globs - the glob patterns to add to the list of patterns to excludeNativeImageResourcePatternsBuildItem.Builderpublic NativeImageResourcePatternsBuildItem.Builder excludePattern(String pattern)
Use slash (/) as a path separator on all platforms. The pattern must not start with slash.
pattern - the regular expression to add to the list of patterns to excludeNativeImageResourcePatternsBuildItem.Builderpublic NativeImageResourcePatternsBuildItem.Builder excludePatterns(Collection<String> patterns)
Use slash (/) as a path separator on all platforms. The pattern must not start with slash.
patterns - the regular expressions to add to the list of patterns to excludeNativeImageResourcePatternsBuildItem.Builderpublic NativeImageResourcePatternsBuildItem.Builder excludePatterns(String... patterns)
Use slash (/) as a path separator on all platforms. The pattern must not start with slash.
patterns - the regular expressions to add to the list of patterns to excludeNativeImageResourcePatternsBuildItem.Builderpublic NativeImageResourcePatternsBuildItem.Builder includeGlob(String glob)
Use slash (/) as a path separator on all platforms. Globs must not start with slash. See
NativeConfig.ResourcesConfig#includes for the supported glob syntax.
glob - the glob pattern to addNativeImageResourcePatternsBuildItem.Builderpublic NativeImageResourcePatternsBuildItem.Builder includeGlobs(Collection<String> globs)
Use slash (/) as a path separator on all platforms. Globs must not start with slash. See
NativeConfig.ResourcesConfig#includes for the supported glob syntax.
globs - the glob patterns to addNativeImageResourcePatternsBuildItem.Builderpublic NativeImageResourcePatternsBuildItem.Builder includeGlobs(String... patterns)
Use slash (/) as a path separator on all platforms. Globs must not start with slash. See
NativeConfig.ResourcesConfig#includes for the supported glob syntax.
globs - the glob patterns to addNativeImageResourcePatternsBuildItem.Builderpublic NativeImageResourcePatternsBuildItem.Builder includePattern(String pattern)
Use slash (/) as a path separator on all platforms. The pattern must not start with slash.
pattern - the regular expression to addNativeImageResourcePatternsBuildItem.Builderpublic NativeImageResourcePatternsBuildItem.Builder includePatterns(Collection<String> patterns)
Use slash (/) as a path separator on all platforms. The patterns must not start with slash.
patterns - the regular expressions to addNativeImageResourcePatternsBuildItem.Builderpublic NativeImageResourcePatternsBuildItem.Builder includePatterns(String... patterns)
Use slash (/) as a path separator on all platforms. The patterns must not start with slash.
patterns - the regular expressions to addNativeImageResourcePatternsBuildItem.BuilderCopyright © 2021 JBoss by Red Hat. All rights reserved.