jaroslav@68: /* jaroslav@68: * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved. jaroslav@68: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jaroslav@68: * jaroslav@68: * This code is free software; you can redistribute it and/or modify it jaroslav@68: * under the terms of the GNU General Public License version 2 only, as jaroslav@68: * published by the Free Software Foundation. Oracle designates this jaroslav@68: * particular file as subject to the "Classpath" exception as provided jaroslav@68: * by Oracle in the LICENSE file that accompanied this code. jaroslav@68: * jaroslav@68: * This code is distributed in the hope that it will be useful, but WITHOUT jaroslav@68: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jaroslav@68: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jaroslav@68: * version 2 for more details (a copy is included in the LICENSE file that jaroslav@68: * accompanied this code). jaroslav@68: * jaroslav@68: * You should have received a copy of the GNU General Public License version jaroslav@68: * 2 along with this work; if not, write to the Free Software Foundation, jaroslav@68: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jaroslav@68: * jaroslav@68: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jaroslav@68: * or visit www.oracle.com if you need additional information or have any jaroslav@68: * questions. jaroslav@68: */ jaroslav@68: jaroslav@68: package java.lang.annotation; jaroslav@68: jaroslav@68: /** jaroslav@68: * A program element type. The constants of this enumerated type jaroslav@68: * provide a simple classification of the declared elements in a jaroslav@68: * Java program. jaroslav@68: * jaroslav@68: *

These constants are used with the {@link Target} meta-annotation type jaroslav@68: * to specify where it is legal to use an annotation type. jaroslav@68: * jaroslav@68: * @author Joshua Bloch jaroslav@68: * @since 1.5 jaroslav@68: */ jaroslav@68: public enum ElementType { jaroslav@68: /** Class, interface (including annotation type), or enum declaration */ jaroslav@68: TYPE, jaroslav@68: jaroslav@68: /** Field declaration (includes enum constants) */ jaroslav@68: FIELD, jaroslav@68: jaroslav@68: /** Method declaration */ jaroslav@68: METHOD, jaroslav@68: jaroslav@68: /** Parameter declaration */ jaroslav@68: PARAMETER, jaroslav@68: jaroslav@68: /** Constructor declaration */ jaroslav@68: CONSTRUCTOR, jaroslav@68: jaroslav@68: /** Local variable declaration */ jaroslav@68: LOCAL_VARIABLE, jaroslav@68: jaroslav@68: /** Annotation type declaration */ jaroslav@68: ANNOTATION_TYPE, jaroslav@68: jaroslav@68: /** Package declaration */ jaroslav@68: PACKAGE jaroslav@68: }