RenderingHintspublic abstract static class RenderingHints.Key extends Object
RenderingHints class to control various algorithm choices in the rendering and imaging pipelines. Instances of this class are immutable and unique which means that tests for matches can be made using the == operator instead of the more expensive equals() method.| Modifier | Constructor | Description |
|---|---|---|
protected |
Construct a key using the indicated private key. |
| Modifier and Type | Method | Description |
|---|---|---|
final boolean |
equals |
The equals method for all Key objects will return the same result as the equality operator '=='. |
final int |
hashCode() |
The hash code for all Key objects will be the same as the system identity code of the object as defined by the System.identityHashCode() method. |
protected final int |
intKey() |
Returns the private integer key that the subclass instantiated this Key with. |
abstract boolean |
isCompatibleValue |
Returns true if the specified object is a valid value for this Key. |
protected Key(int privatekey)
privatekey - the specified keypublic abstract boolean isCompatibleValue(Object val)
val - the Object to test for validitytrue if val is valid; false otherwise.protected final int intKey()
public final boolean equals(Object o)
© 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.desktop/java/awt/RenderingHints.Key.html