Uses of Enum Class
org.springframework.aot.hint.MemberCategory
Packages that use 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
Methods in org.springframework.aot.hint that return MemberCategoryModifier and TypeMethodDescriptionstatic MemberCategoryReturns 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.Methods in org.springframework.aot.hint that return types with arguments of type MemberCategoryModifier and TypeMethodDescriptionTypeHint.getMemberCategories()Return the member categories that apply.Methods in org.springframework.aot.hint with parameters of type MemberCategoryModifier 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
Methods in org.springframework.aot.hint.predicate with parameters of type MemberCategoryModifier and TypeMethodDescriptionReflectionHintsPredicates.TypeHintPredicate.withAnyMemberCategory(MemberCategory... memberCategories) Refine the current predicate to match if any of the givencategoriesis present.ReflectionHintsPredicates.TypeHintPredicate.withMemberCategories(MemberCategory... memberCategories) Refine the current predicate to only match if the givencategoriesare present.ReflectionHintsPredicates.TypeHintPredicate.withMemberCategory(MemberCategory memberCategory) Refine the current predicate to only match if the givenMemberCategoryis present.