Java Data Type Tutorial - Java Package.getAnnotations()








Syntax

Package.getAnnotations() has the following syntax.

public Annotation [] getAnnotations()

Example

In the following code shows how to use Package.getAnnotations() method.

import java.lang.annotation.Annotation;
//from w  ww.  j  av a  2 s. com


public class Main {
   public static void main(String args[]) {

     // create a package object for java.lang package
     Package pack = Package.getPackage("java.io");
     for(Annotation at:pack.getAnnotations()){
       System.out.println(at); 
     }
     
   }
}