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 17 java.base.jmod - Base Module
JDK 17 java.base.jmod is the JMOD file for JDK 17 Base module.
JDK 17 Base module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.base.jmod.
JDK 17 Base module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Base module source code files are stored in \fyicenter\jdk-17.0.5\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, 2019, 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 { @java.io.Serial 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-17.0.5-src.zip File size: 8883851 bytes Release date: 2022-09-13 Download
2023-09-26, 89862👍, 1💬
Popular Posts:
Commons Pool provides an Object-pooling API, with three major aspects: 1. A generic object pool inte...
What Is activation.jar? I heard it's related to JAF (JavaBeans Activation Framework) 1.0.2? The if y...
What Is jaxb-api-2.1.6.jar? Java Architecture for XML Binding (JAXB) is a Java API that allows Java ...
JDK 11 jdk.httpserver.jmod is the JMOD file for JDK 11 HTTP Server module. JDK 11 HTTP Server module...
Where to find answers to frequently asked questions on Download and Installing of Older Versions? He...