T - the type of the associated valuepublic abstract class ClassValue<T> extends Object
Class object. For example, if a dynamic language needs to construct a message dispatch table for each class encountered at a message send call site, it can use a ClassValue to cache information needed to perform the message send quickly, for each class encountered. The basic operation of a ClassValue is get, which returns the associated value, initially created by an invocation to computeValue; multiple invocations may happen under race, but exactly one value is associated to a Class and returned.
Another operation is remove: it clears the associated value (if it exists), and ensures the next associated value is computed with input states up-to-date with the removal.
For a particular association, there is a total order for accesses to the associated value. Accesses are atomic; they include:
get
computeValue by get
remove
get call always include at least one access; a remove call always has exactly one access; a computeValue call always happens between two accesses. This establishes the order of computeValue calls with respect to remove calls and determines whether the results of a computeValue can be successfully associated by a
get.| Modifier | Constructor | Description |
|---|---|---|
protected |
Sole constructor. |
| Modifier and Type | Method | Description |
|---|---|---|
protected abstract T |
computeValue |
Computes the value to associate to the given Class. |
T |
get |
Returns the value associated to the given Class. |
void |
remove |
Removes the associated value for the given Class and invalidates all out-of-date computations. |
protected ClassValue()
protected abstract T computeValue(Class<?> type)
Class. This method is invoked when the initial read-only access by get finds no associated value.
If this method throws an exception, the initiating get call will not attempt to associate a value, and may terminate by returning the associated value if it exists, or by propagating that exception otherwise.
Otherwise, the value is computed and returned. An attempt to associate the return value happens, with one of the following outcomes:
remove call, if it exists, does not happen-before (JLS 17.4.5) the finish of the computeValue that computed the value to associate. A new invocation to
computeValue, which that remove call happens-before, will re-establish this happens-before relationship.computeValue call may, due to class loading or other circumstances, recursively call get or remove for the same type. The recursive get, if the recursion stops, successfully finishes and this initiating get observes the associated value from recursion. The recursive remove is no-op, since being on the same thread, the remove already happens-before the finish of this computeValue; the result from this
computeValue still may be associated.type - the Class to associate a value topublic T get(Class<?> type)
Class. This method first performs a read-only access, and returns the associated value if it exists. Otherwise, this method tries to associate a value from a computeValue invocation until the associated value exists, which could be associated by a competing thread.
This method may throw an exception from a computeValue invocation. In this case, no association happens.
type - the Class to retrieve the associated value forClass
NullPointerException - if the argument is null
public void remove(Class<?> type)
Class and invalidates all out-of-date computations. If this association is subsequently accessed, this removal happens-before (JLS 17.4.5) the finish of the computeValue call that returned the associated value.type - the type whose class value must be removedNullPointerException - if the argument is null
© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/ClassValue.html