Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2020-09-16 03:59:22 +0000
committerJay Arthanareeswaran2020-09-16 03:59:22 +0000
commit27b53ca171a19db4794ec310f4e339e876ea495f (patch)
tree3b12fd95b0afb9a5401d836d115751d13588c5c0 /JCL/converterJclMin13/src/java/lang/annotation/ElementType.java
parenta8b03f929def2f6a9f479a198856e34e6cd4af34 (diff)
parent0a27063a3e6012ba850fd756f98be50be0375dc3 (diff)
downloadeclipse.jdt.core-27b53ca171a19db4794ec310f4e339e876ea495f.tar.gz
eclipse.jdt.core-27b53ca171a19db4794ec310f4e339e876ea495f.tar.xz
eclipse.jdt.core-27b53ca171a19db4794ec310f4e339e876ea495f.zip
Merge remote-tracking branch 'origin/BETA_JAVA15'
Diffstat (limited to 'JCL/converterJclMin13/src/java/lang/annotation/ElementType.java')
-rw-r--r--JCL/converterJclMin13/src/java/lang/annotation/ElementType.java48
1 files changed, 48 insertions, 0 deletions
diff --git a/JCL/converterJclMin13/src/java/lang/annotation/ElementType.java b/JCL/converterJclMin13/src/java/lang/annotation/ElementType.java
new file mode 100644
index 0000000000..7b5b59578e
--- /dev/null
+++ b/JCL/converterJclMin13/src/java/lang/annotation/ElementType.java
@@ -0,0 +1,48 @@
+package java.lang.annotation;
+
+public enum ElementType {
+ /** Class, interface (including annotation type), or enum declaration */
+ TYPE,
+
+ /** Field declaration (includes enum constants) */
+ FIELD,
+
+ /** Method declaration */
+ METHOD,
+
+ /** Formal parameter declaration */
+ PARAMETER,
+
+ /** Constructor declaration */
+ CONSTRUCTOR,
+
+ /** Local variable declaration */
+ LOCAL_VARIABLE,
+
+ /** Annotation type declaration */
+ ANNOTATION_TYPE,
+
+ /** Package declaration */
+ PACKAGE,
+
+ /**
+ * Type parameter declaration
+ *
+ * @since 1.8
+ */
+ TYPE_PARAMETER,
+
+ /**
+ * Use of a type
+ *
+ * @since 1.8
+ */
+ TYPE_USE,
+
+ /**
+ * Module declaration.
+ *
+ * @since 9
+ */
+ MODULE
+}

Back to the top