Character.Subset
public static class Character.Subset
extends Object
Known Direct Subclasses
|
此类的实例表示Unicode字符集的特定子集。 Character
类中定义的唯一子集系列是Character.UnicodeBlock
。 Java API的其他部分可以为其自己的目的定义其他子集。
Summary
Protected constructors
Character.Subset
Character.Subset (String name)
构造一个新的 Subset
实例。
Parameters |
name |
String : The name of this subset |
Public methods
equals
boolean equals (Object obj)
比较两个Subset
对象是否相等。 当且仅当this
和参数引用同一个对象时,此方法返回true
; 因为这个方法是final
,这个保证适用于所有的子类。
Parameters |
obj |
Object : the reference object with which to compare. |
Returns |
boolean |
true if this object is the same as the obj argument; false otherwise. |
hashCode
int hashCode ()
返回hashCode()
方法定义的标准哈希码。 此方法为final
,以确保equals
和hashCode
方法在所有子类中保持一致。
Returns |
int |
a hash code value for this object. |
toString
String toString ()
返回此子集的名称。
Returns |
String |
a string representation of the object. |