|
Spec-Zone .ru
спецификации, руководства, описания, API
|
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.awt.RenderingHints.Key
public abstract static class RenderingHints.Key extends Object
Defines the base type of all keys used along with the
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 and Description |
|---|---|
protected |
RenderingHints.Key(int privatekey)
Construct a key using the indicated private key. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o)
The equals method for all Key objects will return the same result as the equality operator '=='. |
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 int |
intKey()
Returns the private integer key that the subclass instantiated this Key with. |
abstract boolean |
isCompatibleValue(Object val)
Returns true if the specified object is a valid value for this Key. |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
protected RenderingHints.Key(int privatekey)
privatekey - the specified key| Method Detail |
|---|
public abstract boolean isCompatibleValue(Object val)
val - the Object to test for validitytrue if val is valid;
false otherwise.protected final int intKey()
public final int hashCode()
hashCode in class ObjectObject.equals(java.lang.Object),
System.identityHashCode(java.lang.Object)public final boolean equals(Object o)
equals in class Objecto - the reference object with which to compare.true if this object is the same as the obj
argument; false otherwise.Object.hashCode(),
HashMap
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright © 1993, 2010, Oracle Corporation. All rights reserved.