Spy.java Source code

Java tutorial

Introduction

Here is the source code for Spy.java

Source

import java.lang.annotation.Annotation;
import java.lang.reflect.Field;

enum Spy {
    @Deprecated
    BLACK, WHITE
}

public class Main {

    public static void main(String... args) throws Exception {
        Class<?> c = Class.forName("Spy");
        Field[] flds = c.getFields();
        for (Field f : flds) {
            Annotation[] annos = f.getDeclaredAnnotations();
            for (Annotation anno : annos) {
                System.out.println(anno.toString());
            }

        }
    }
}