Uses of Enum Class
org.springframework.aot.hint.MemberCategory
Package
Description
Support for registering the need for reflection, resources, java
serialization and proxies at runtime.
Predicate support for runtime hints.
-
Uses of MemberCategory in org.springframework.aot.hint
Modifier and TypeMethodDescriptionstatic MemberCategory
Returns the enum constant of this class with the specified name.static MemberCategory[]
MemberCategory.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionTypeHint.getMemberCategories()
Return the member categories that apply.Modifier and TypeMethodDescriptionstatic Consumer<TypeHint.Builder>
TypeHint.builtWith
(MemberCategory... memberCategories) ReflectionHints.registerType
(Class<?> type, MemberCategory... memberCategories) Register or customize reflection hints for the specified type using the specifiedMemberCategories
.ReflectionHints.registerType
(TypeReference type, MemberCategory... memberCategories) Register or customize reflection hints for the specified type using the specifiedMemberCategories
.ReflectionHints.registerTypeIfPresent
(ClassLoader classLoader, String typeName, MemberCategory... memberCategories) Register or customize reflection hints for the specified type if it is available using the specifiedClassLoader
.TypeHint.Builder.withMembers
(MemberCategory... memberCategories) Adds the specified member categories. -
Uses of MemberCategory in org.springframework.aot.hint.predicate
Modifier and TypeMethodDescriptionReflectionHintsPredicates.TypeHintPredicate.withAnyMemberCategory
(MemberCategory... memberCategories) Refine the current predicate to match if any of the givencategories
is present.ReflectionHintsPredicates.TypeHintPredicate.withMemberCategories
(MemberCategory... memberCategories) Refine the current predicate to only match if the givencategories
are present.ReflectionHintsPredicates.TypeHintPredicate.withMemberCategory
(MemberCategory memberCategory) Refine the current predicate to only match if the givenMemberCategory
is present.