- java.lang.Object
-
- java.awt.font.TransformAttribute
-
- 实现的所有接口
-
Serializable
public final class TransformAttribute extends Object implements Serializable
TransformAttribute
类为转换提供了一个不可变的包装器,因此可以安全地用作属性。- 另请参见:
- Serialized Form
-
-
字段汇总
字段 变量和类型 字段 描述 static TransformAttribute
IDENTITY
TransformAttribute
表示身份变换。
-
构造方法摘要
构造方法 构造器 描述 TransformAttribute(AffineTransform transform)
包装指定的转换。
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 boolean
equals(Object rhs)
返回true
如果RHS是TransformAttribute
,其变换等于该TransformAttribute
的变换。AffineTransform
getTransform()
返回包装变换的副本。int
hashCode()
返回对象的哈希码值。boolean
isIdentity()
如果包装的变换是标识变换,则返回true
。
-
-
-
字段详细信息
-
IDENTITY
public static final TransformAttribute IDENTITY
TransformAttribute
表示身份变换。- 从以下版本开始:
- 1.6
-
-
构造方法详细信息
-
TransformAttribute
public TransformAttribute(AffineTransform transform)
- 参数
-
transform
- 要包装的指定AffineTransform
,或为null。
-
-
方法详细信息
-
getTransform
public AffineTransform getTransform()
返回包装变换的副本。- 结果
-
AffineTransform
,它是AffineTransform
的包装变换的TransformAttribute
。
-
isIdentity
public boolean isIdentity()
如果包装变换是标识变换,则返回true
。- 结果
-
true
如果包装变换是标识变换; 否则为false
。 - 从以下版本开始:
- 1.4
-
hashCode
public int hashCode()
返回对象的哈希码值。 支持此方法的好处是哈希表,例如HashMap
提供的哈希表。hashCode
的总合同是:- 只要在执行Java应用程序期间多次在同一对象上调用它,
hashCode
方法必须始终返回相同的整数,前提是不修改对象上的equals
比较中使用的信息。 从应用程序的一次执行到同一应用程序的另一次执行,该整数不需要保持一致。 - 如果两个对象根据
equals(Object)
方法相等,则对两个对象中的每个对象调用hashCode
方法必须生成相同的整数结果。 - 根据
Object.equals(java.lang.Object)
方法,如果两个对象不相等则不是必需的,则在两个对象中的每一个上调用hashCode
方法必须产生不同的整数结果。 但是,程序员应该知道为不等对象生成不同的整数结果可能会提高哈希表的性能。
尽管合理可行,但是类
Object
定义的hashCode方法确实为不同的对象返回不同的整数。 (hashCode可能会或可能不会在某个时间点实现为对象的内存地址的某些功能。)- 重写:
-
hashCode
在课程Object
- 结果
- 此对象的哈希码值。
- 从以下版本开始:
- 1.6
- 另请参见:
-
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
- 只要在执行Java应用程序期间多次在同一对象上调用它,
-
equals
public boolean equals(Object rhs)
如果rhs是TransformAttribute
其变换等于此TransformAttribute
的变换,则返回true
。- 重写:
-
equals
,类Object
- 参数
-
rhs
- 要比较的对象 - 结果
-
true
如果参数是TransformAttribute
其变换等于此TransformAttribute
的变换。 - 从以下版本开始:
- 1.6
- 另请参见:
-
Object.hashCode()
,HashMap
-
-