Class java.text.TableCollation (1.1)
public class TableCollation extends Collation {
// Public Constructor
public TableCollation(String rules) throws FormatException;
// Public Instance Methods
public Object clone( ); // Overrides Object.clone( )
public byte compare(String source, String target);
public byte compare(String source, int start, int end, String target, int targetStart, int targetEnd) throws StringIndexOutOfBoundsException;
public boolean equals(Object obj); // Overrides Object.equals( )
public CollationKey getCollationKey(String source);
public CollationKey getCollationKey(String source, int start, int end);
public String getRules( );
public SortKey getSortKey(String source);
public SortKey getSortKey(String source, int start, int end);
public int hashCode( ); // Overrides Object.hashCode( )
}