- java.lang.Object
-
- java.awt.RenderingHints.Key
-
- Enclosing class:
- RenderingHints
public abstract static class RenderingHints.Key extends Object
Defines the base type of all keys used along with theRenderingHints
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 expensiveequals()
method.
-
-
Constructor Summary
Constructors Modifier Constructor and Description protected
RenderingHints.Key(int privatekey)
Construct a key using the indicated private key.
-
Method Summary
Methods 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.
-
-
-
Constructor Detail
-
RenderingHints.Key
protected RenderingHints.Key(int privatekey)
Construct a key using the indicated private key. Each subclass of Key maintains its own unique domain of integer keys. No two objects with the same integer key and of the same specific subclass can be constructed. An exception will be thrown if an attempt is made to construct another object of a given class with the same integer key as a pre-existing instance of that subclass of Key.- Parameters:
privatekey
- the specified key
-
-
Method Detail
-
isCompatibleValue
public abstract boolean isCompatibleValue(Object val)
Returns true if the specified object is a valid value for this Key.- Parameters:
val
- theObject
to test for validity- Returns:
true
ifval
is valid;false
otherwise.
-
intKey
protected final int intKey()
Returns the private integer key that the subclass instantiated this Key with.- Returns:
- the private integer key that the subclass instantiated this Key with.
-
hashCode
public 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.- Overrides:
hashCode
in classObject
- Returns:
- a hash code value for this object.
- See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
equals
public final boolean equals(Object o)
The equals method for all Key objects will return the same result as the equality operator '=='.- Overrides:
equals
in classObject
- Parameters:
o
- the reference object with which to compare.- Returns:
true
if this object is the same as the obj argument;false
otherwise.- See Also:
Object.hashCode()
,HashMap
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/awt/renderinghints.key.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.