This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


java.lang
class Character.Subset

java.lang.Object extended by java.lang.Character.Subset
Direct Known Subclasses:
Character.UnicodeBlock, InputSubset
Enclosing class:
Character

public static class Character.Subset
extends Object

Instances of this class represent particular subsets of the Unicode character set. The only family of subsets defined in the Character class is {@link Character.UnicodeBlock UnicodeBlock}. Other portions of the Java API may define other subsets for their own purposes.


Constructor Summary
protected

          Constructs a new Subset instance.
 
Method Summary
 boolean

          Compares two Subset objects for equality.
 int

          Returns the standard hash code as defined by the java.lang.Object.hashCode method.
 String

          Returns the name of this subset.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Character.Subset

protected Character.Subset(String name)
Constructs a new Subset instance.

Parameters:
name - The name of this subset
Method Detail

equals

public final boolean equals(Object obj)
Compares two Subset objects for equality. This method returns true if and only if this and the argument refer to the same object; since this method is final, this guarantee holds for all subclasses.

Overrides:
equals in class Object
Parameters:
obj

hashCode

public final int hashCode()
Returns the standard hash code as defined by the {@link Object#hashCode} method. This method is final in order to ensure that the equals and hashCode methods will be consistent in all subclasses.

Overrides:
hashCode in class Object

toString

public final String toString()
Returns the name of this subset.

Overrides:
toString in class Object


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.