Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JDK-8310267: Javadoc for Class#isPrimitive() is incorrect regarding Class objects for primitives #14574

Closed
wants to merge 7 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions src/java.base/share/classes/java/lang/Class.java
Original file line number Diff line number Diff line change
@@ -807,15 +807,16 @@ public Void run() {


/**
* Determines if the specified {@code Class} object represents a
* primitive type or void.
*
* <p> There are nine predefined {@code Class} objects to represent
* the eight primitive types and void. These are created by the Java
* Virtual Machine, and have the same {@linkplain #getName() names} as the primitive types that
* they represent, namely {@code boolean}, {@code byte},
* {@code char}, {@code short}, {@code int},
* {@code long}, {@code float}, and {@code double}.
* Determines if this {@code Class} object represents a primitive
* type or void.
*
* <p> There are nine predefined {@code Class} objects to
* represent the eight primitive types and void. These are
* created by the Java Virtual Machine, and have the same
* {@linkplain #getName() names} as the primitive types that they
* represent, namely {@code boolean}, {@code byte}, {@code char},
* {@code short}, {@code int}, {@code long}, {@code float}, and
* {@code double}.
*
* <p>No other class objects are considered primitive.
*