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 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

Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-java/awt/RenderingHints.Key.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.

References

  1. View the html document Language of the document:fr Manuel PHP : https://docs.oracle.com

These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.

Contents Haut