java.awt

Class RenderingHints.Key

  • Enclosing class:
    RenderingHints

    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.
    • 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 - the Object to test for validity
        Returns:
        true if val 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.
      • 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 class Object
        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

Traduction non disponible

Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Document créé le 30/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/awt/RenderingHints.Key.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com, RenderingHints.Key

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.

Table des matières Haut