Methods Summary |
---|
public abstract boolean | equals(java.lang.Object address)The equality operator. Subclasses should provide an
implementation of this method that supports value equality
(do the two Address objects represent the same destination?),
not object reference equality. A subclass must also provide
a corresponding implementation of the hashCode
method that preserves the general contract of
equals and hashCode - objects that
compare as equal must have the same hashCode.
|
public abstract java.lang.String | getType()Return a type string that identifies this address type.
|
public abstract java.lang.String | toString()Return a String representation of this address object.
|