java.lang.Object java.awt.RenderingHints.Key
public abstract static class RenderingHints.Key
定义与 RenderingHints
一起使用的、用来控制呈现和图像管线中各种算法选择的所有键的基本类型。此类的实例是不变且唯一的,这意味着可以使用 ==
运算符代替开销更大的 equals()
方法进行匹配测试。
构造方法摘要 | |
---|---|
protected |
RenderingHints.Key(int privatekey) 使用指示的私有键构造一个键。 |
方法摘要 | |
---|---|
boolean |
equals(Object o) 用于所有 Key 对象的 equals 方法将返回与等号运算符 '==' 相同的结果。 |
int |
hashCode() 所有 Key 对象的哈希码将与 System.identityHashCode() 方法定义的对象的系统识别码相同。 |
protected int |
intKey() 返回子类用来实例化此 Key 的私有整数键。 |
abstract boolean |
isCompatibleValue(Object val) 如果指定对象是此 Key 的有效值,则返回 true。 |
从类 java.lang.Object 继承的方法 |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
protected RenderingHints.Key(int privatekey)
privatekey
- 指定键
方法详细信息 |
---|
public abstract boolean isCompatibleValue(Object val)
val
- 要测试有效性的
Object
val
有效,则返回
true
;否则返回
false
。
protected final int intKey()
public final int hashCode()
Object.equals(java.lang.Object)
,
Hashtable
public final boolean equals(Object o)
o
- 要与之比较的引用对象。
true
;否则返回
false
。
Object.hashCode()
,
Hashtable