Annotation Interface IntrospectionAccess
This annotation indicates that Introspection.accessScoped() and Introspection.scopedGet(Property) can be used
inside the method annotated with this annotation.
If this annotation is present on a Class like RuntimeCloseEvent it's up to the use case which meaning this has, please
read the javadocs there.
Only properties having at least the stage of value() can be used.
Stage.INTERACTIONincludesStage.CONFIGURATION,Stage.INITIALIZEDandStage.RUNTIMEStage.RUNTIMEincludesStage.CONFIGURATIONandStage.INITIALIZEDStage.INITIALIZEDincludesStage.CONFIGURATION
More technical, a Stage with a certain ordinal contains all stages with a lower ordinal value:
stageA ⊆ stageB if stageA.ordinal < stageB.ordinal
- See Also:
-
Required Element Summary
Required Elements
-
Element Details
-
value
Stage valueTheStageof the availableIntrospectioninstance.
-