public interface DBase extends Serializable
The Base class defines methods that are common to all the classes. User code should not directly access the Base class.
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object object)
Indicates whether some other object is "equal to" this one.
|
int |
hashCode()
Returns a hash code value for the object.
|
String |
toString()
Returns a short description of an instance.
|
String toString()
boolean equals(Object object)
equals in class Objectobject - the reference object with which to compare.true if this object is the same as the object
argument; false otherwise.hashCode(),
Object.hashCode(),
Object.equals(java.lang.Object),
Hashtableint hashCode()
hashCode in class Objectequals(java.lang.Object),
Object.hashCode(),
Object.equals(java.lang.Object),
HashtableCopyright © 2005–2020. All rights reserved.