Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 java.base.jmod - Base Module
JDK 11 java.base.jmod is the JMOD file for JDK 11 Base module.
JDK 11 Base module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.base.jmod.
JDK 11 Base module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Base module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.base.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ java/lang/annotation/AnnotationTypeMismatchException.java
/* * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.lang.annotation; import java.lang.reflect.Method; /** * Thrown to indicate that a program has attempted to access an element of * an annotation whose type has changed after the annotation was compiled * (or serialized). * This exception can be thrown by the {@linkplain * java.lang.reflect.AnnotatedElement API used to read annotations * reflectively}. * * @author Josh Bloch * @see java.lang.reflect.AnnotatedElement * @since 1.5 */ public class AnnotationTypeMismatchException extends RuntimeException { private static final long serialVersionUID = 8125925355765570191L; /** * The {@code Method} object for the annotation element. */ private final transient Method element; /** * The (erroneous) type of data found in the annotation. This string * may, but is not required to, contain the value as well. The exact * format of the string is unspecified. */ private final String foundType; /** * Constructs an AnnotationTypeMismatchException for the specified * annotation type element and found data type. * * @param element the {@code Method} object for the annotation * element, may be {@code null} * @param foundType the (erroneous) type of data found in the annotation. * This string may, but is not required to, contain the value * as well. The exact format of the string is unspecified, * may be {@code null}. */ public AnnotationTypeMismatchException(Method element, String foundType) { super("Incorrectly typed data found for annotation element " + element + " (Found data of type " + foundType + ")"); this.element = element; this.foundType = foundType; } /** * Returns the {@code Method} object for the incorrectly typed element. * The value may be unavailable if this exception has been * serialized and then read back in. * * @return the {@code Method} object for the incorrectly typed * element, or {@code null} if unavailable */ public Method element() { return this.element; } /** * Returns the type of data found in the incorrectly typed element. * The returned string may, but is not required to, contain the value * as well. The exact format of the string is unspecified and the string * may be {@code null}. * * @return the type of data found in the incorrectly typed element */ public String foundType() { return this.foundType; } }
⏎ java/lang/annotation/AnnotationTypeMismatchException.java
Or download all of them as a single archive file:
File name: java.base-11.0.1-src.zip File size: 8740354 bytes Release date: 2018-11-04 Download
2020-05-29, 242834👍, 0💬
Popular Posts:
JRE 8 deploy.jar is the JAR file for JRE 8 Java Control Panel and other deploy tools. JRE (Java Runt...
What Is XMLBeans xbean.jar 2.6.0? XMLBeans xbean.jar 2.6.0 is the JAR file for Apache XMLBeans 2.6.0...
What Is poi-3.5.jar - Part 2? poi-3.5.jar is one of the JAR files for Apache POI 3.5, which provides...
JDOM provides a solution for using XML from Java that is as simple as Java itself. There is no compe...
How to run "jarsigner" command from JDK tools.jar file? "jarsigner" command allows you to digitally ...