Java Annotations
Annotations were introduced or became available in the 1.5 version of the Java Development Kit (JDK). Annotations in Java provide more information about the data present in the code structure, i.e., it is data about data, also known as metadata.
What are Annotations in Java?
Annotations help in defining metadata in code in a standardized manner. Also, annotations help in providing instructions to your java compiler to follow while compiling that java code.
Start Your Free Software Development Course
Web development, programming languages, Software testing & others
When using the annotations, we use the ‘@’ sign and then followed by the name of your annotation so that the compiler treats it as an annotation.
It is important to note that the annotations can be added before:
- A class declaration
- A member variable declaration
- A constructor declaration
- A method declaration
- A parameter declaration
- A local variable declaration.
Important points to remember are that all annotations extend java.lang.annotation.Annotation interface. Also, annotations cannot include any extended clause.
Built-in Java Annotations
In Java, there are in-built annotations such as @Override, @Deprecated, @SuppressWarnings that are designed for a specific purpose and used in one of the above situations(s), for example, only for the class or only for method, etc.
Example #1 – Override
Code:
class Dad { public void say() { System.out.println("Do your homework"); } } public class Child extends Dad { @Override public void say(){ System.out.println("I wanna play"); } public static void main(String args[]){ Dad daddy = new Child(); daddy.say(); } }
Output:
Example #2 – Deprecated
Code:
public class Outdated { @Deprecated public void oldShow() { System.out.println("This Method is deprecated"); } public static void main(String args[]) { Outdated od = new Outdated (); od.oldShow(); } }
Output:
Meta Annotations
There are five types of meta-annotations:
- Documented – It informs that the member, variable, or class that uses this annotation needs to be documented by Javadoc or any other similar tools available.
- Target – It is used to specify at which type the annotation is used. It is mostly used along with your custom annotations.
- Inherited – It marks the annotation to be inherited to the subclass.
- Retention – It indicates how long annotations with the annotated type are to be retained. It takes the Retention Policy argument whose Possible values are: SOURCE, CLASS, and RUNTIME.
- Repeatable – This informs that the annotation types whose declaration it annotates are repeatable.
Example – Documentation and Retention
Code:
import java.lang.annotation.*; @Retention(RetentionPolicy.RUNTIME) @interface RSample { String rentent(); } @Documented @interface DSample { String doc(); } public class MetaAnnotate { public static void main(String arg[]) { new MetaAnnotate().rentent(); new MetaAnnotate().doc(); } @RSample (rentent="Meta Info R") public void rentent() { System.out.println("Retention Policy Applied"); } @DSample(doc="Meta Info D") public void doc() { System.out.println("Code Documented with the value"); } }
Output:
Explanation:
- RetentionPolicy.RUNTIME – This value specifies that the annotation value should be available at runtime for inspection via java reflection.
- Run the Javadoc command to view the documentation of your code.
Types of Annotations
There are three categories of annotations, and there are as follows:
1. Marker Annotations – These types of annotations are used as a declaration to notify the developer what the below function or class is all about, i.e., it shares extra information about the function or class like whether the function is overriding another function or is the function deprecated, etc. @Override, @Deprecated are considered as marker annotations.
Example: DemoAnnotation()
2. Single Value Annotations – This kind of annotation takes in value to specify that value for that member for which the annotation is placed in front of and hence, don’t need to specify the name of that member.
Example: DemoAnnotation(“custId123”)
3. Full Annotations – This kind of annotation takes in multiple values, pairs, members.
Example: DemoAnnotation(category=”Toys”, value=1500)
Custom
Custom annotations are created by the user interface, followed by an annotation name, as we will see in the below example.
File 1: Custom Annotation Defined
import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target({ElementType.TYPE, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @interface Magicians { String Wizard() default "Reynolds"; String House() default "Green"; } @Magicians public class Magician { @Magicians(Wizard = "Harry Potter", House = "Red") public String getString() { return null; } }
File 2: Main Class that calls the Custom Annotation Class
import java.lang.annotation.Annotation; import java.lang.reflect.AnnotatedElement; import java.lang.reflect.Method; public class MyCustomAnnotation { public static void main(String[] args) throws NoSuchMethodException, SecurityException { new Magician(); Class<Magician> magic = Magician.class; readAnnotationOn(magic); Method method = magic.getMethod("getString", new Class[]{}); readAnnotationOn(method); } static void readAnnotationOn(AnnotatedElement element) { try { System.out.println("\n Find annotations on " + element.getClass().getName()); Annotation[] annotations = element.getAnnotations(); for (Annotation annotation : annotations) { if (annotation instanceof Magicians) { Magicians mData = (Magicians) annotation; System.out.println("Wizard Name :" + mData.Wizard()); System.out.println("Wizard House Color :" + mData.House()); } } } catch (Exception e) { e.printStackTrace(); } } }
Output:
Conclusion
In this article, we saw about what are java annotations and their types with examples, we saw examples of built-in annotations provided by java and coded our custom annotations. We saw annotations that are useful in standardizing the code and also help in better understanding the code and its structure.
The above is the detailed content of Java Annotations. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

The reasons why PHP is the preferred technology stack for many websites include its ease of use, strong community support, and widespread use. 1) Easy to learn and use, suitable for beginners. 2) Have a huge developer community and rich resources. 3) Widely used in WordPress, Drupal and other platforms. 4) Integrate tightly with web servers to simplify development deployment.
