The Atom class of the com.ms.xml.util package creates a global hash table of all atoms that have been constructed. This general-purpose object allows efficient sharing of duplicate strings in the system.
public class Atom { // Methods public static Atom create(String s); public int hashCode(); public String toString(); public boolean equals(Object that); }