JAVA EXAMPLE PROGRAMS

JAVA EXAMPLE PROGRAMS

Publish Your Article Here

What is Retention policy in java annotations?


Description:

  • A retention policy determines at what point annotation should be discarded.
  • Java defined 3 types of retention policies through java.lang.annotation.RetentionPolicy enumeration. It has SOURCE, CLASS and RUNTIME.
  • Annotation with retention policy SOURCE will be retained only with source code, and discarded during compile time.
  • Annotation with retention policy CLASS will be retained till compiling the code, and discarded during runtime.
  • Annotation with retention policy RUNTIME will be available to the JVM through runtime.
  • The retention policy will be specified by using java built-in annotation @Retention, and we have to pass the retention policy type.
  • The default retention policy type is CLASS.


Code:
package com.java2novice.annotations;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@Retention(RetentionPolicy.RUNTIME)
public @interface MySampleAnn {

	String name();
	String desc();
}

class MyAnnTest{
	
	@MySampleAnn(name = "test1", desc = "testing annotations")
	public void myTestMethod(){
		//method implementation
	}
}
<< Previous Program | Next Program >>

List Of All Annotation (Metadata) Programs:

  1. How to create basic custom annotation?
  2. What is Retention policy in java annotations?
  3. How to get annotations at runtime using java reflection?
  4. How to get all annotations from a class?
  5. How to assign default values to custom annotations?
  6. What is marker annotation and how to process it at runtime?
  7. Built-in Java Annotations: @Deprecated example
  8. Built-in Java Annotations: @Override example
  9. Built-in Java Annotations: @SuppressWarnings example
  10. What is single member annotation and how to process it?
Knowledge Centre
What is java static import?
By using static imports, we can import the static members from a class rather than the classes from a given package. For example, Thread class has static sleep method, below example gives an idea:

import static java.lang.Thread;
public class MyStaticImportTest {
public static void main(String[] a) {
try{
sleep(100);
} catch(Exception ex){

}
}
}
Famous Quotations
The pessimist complains about the wind; the optimist expects it to change; the realist adjusts the sails.
-- William Arthur Ward

About Author

I'm Nataraja Gootooru, programmer by profession and passionate about technologies. All examples given here are as simple as possible to help beginners. The source code is compiled and tested in my dev environment.

If you come across any mistakes or bugs, please email me to [email protected].

Most Visited Pages

Other Interesting Sites

Reference: Java™ Platform Standard Ed. 7 - API Specification | Java™ Platform Standard Ed. 8 - API Specification | Java is registered trademark of Oracle.
Privacy Policy | Copyright © 2022 by Nataraja Gootooru. All Rights Reserved.