Uses of Class
java.lang.annotation.Retention
-
Packages that use Retention Package Description java.beans Contains classes related to developing beans -- components based on the JavaBeans™ architecture.java.lang Provides classes that are fundamental to the design of the Java programming language.java.lang.annotation Provides library support for the Java programming language annotation facility.javax.annotation.processing Facilities for declaring annotation processors and for allowing annotation processors to communicate with an annotation processing tool environment.javax.management Provides the core classes for the Java Management Extensions.javax.swing Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms. -
-
Uses of Retention in java.beans
Classes in java.beans with annotations of type Retention Modifier and Type Class Description interfaceBeanPropertyAn annotation used to specify some property-related information for the automatically generatedBeanInfoclasses.interfaceConstructorPropertiesAn annotation on a constructor that shows how the parameters of that constructor correspond to the constructed object's getter methods.interfaceJavaBeanAn annotation used to specify some class-related information for the automatically generatedBeanInfoclasses.interfaceTransientIndicates that an attribute called "transient" should be declared with the givenvaluewhen theIntrospectorconstructs aPropertyDescriptororEventSetDescriptorclasses associated with the annotated code element. -
Uses of Retention in java.lang
Classes in java.lang with annotations of type Retention Modifier and Type Class Description interfaceDeprecatedA program element annotated@Deprecatedis one that programmers are discouraged from using.interfaceFunctionalInterfaceAn informative annotation type used to indicate that an interface type declaration is intended to be a functional interface as defined by the Java Language Specification.interfaceOverrideIndicates that a method declaration is intended to override a method declaration in a supertype.interfaceSafeVarargsA programmer assertion that the body of the annotated method or constructor does not perform potentially unsafe operations on its varargs parameter.interfaceSuppressWarningsIndicates that the named compiler warnings should be suppressed in the annotated element (and in all program elements contained in the annotated element). -
Uses of Retention in java.lang.annotation
Classes in java.lang.annotation with annotations of type Retention Modifier and Type Class Description interfaceDocumentedIf the annotation@Documentedis present on the declaration of an annotation type A, then any@Aannotation on an element is considered part of the element's public contract.interfaceInheritedIndicates that an annotation type is automatically inherited.interfaceNativeIndicates that a field defining a constant value may be referenced from native code.interfaceRepeatableThe annotation typejava.lang.annotation.Repeatableis used to indicate that the annotation type whose declaration it (meta-)annotates is repeatable.interfaceRetentionIndicates how long annotations with the annotated type are to be retained.interfaceTargetIndicates the contexts in which an annotation type is applicable. -
Uses of Retention in javax.annotation.processing
Classes in javax.annotation.processing with annotations of type Retention Modifier and Type Class Description interfaceGeneratedThe Generated annotation is used to mark source code that has been generated.interfaceSupportedAnnotationTypesAn annotation used to indicate what annotation types an annotation processor supports.interfaceSupportedOptionsAn annotation used to indicate what options an annotation processor supports.interfaceSupportedSourceVersionAn annotation used to indicate the latest source version an annotation processor supports. -
Uses of Retention in javax.management
Classes in javax.management with annotations of type Retention Modifier and Type Class Description interfaceConstructorParametersAn annotation on a constructor that shows how the parameters of that constructor correspond to the constructed object's getter methods.interfaceDescriptorKeyMeta-annotation that describes how an annotation element relates to a field in aDescriptor.interfaceMXBeanAnnotation to mark an interface explicitly as being an MXBean interface, or as not being an MXBean interface. -
Uses of Retention in javax.swing
Classes in javax.swing with annotations of type Retention Modifier and Type Class Description interfaceSwingContainerAn annotation used to specify some swing-related information for the automatically generatedBeanInfoclasses.
-