Methods Summary |
---|
public boolean | equals(java.lang.Object obj)Checks whether two DataSourceSpec objects
are equal or not.
if (obj instanceof DataSourceSpec) {
return this.details.equals(((DataSourceSpec) obj).details);
}
return false;
|
public java.lang.String | getDetail(int property)Get the value of property
if (details.containsKey(property)) {
return details.get(property);
} else {
return null;
}
|
public int | hashCode()Retrieves the hashCode of this DataSourceSpec object.
return this.details.hashCode();
|
public void | setDetail(int property, java.lang.String value)Set the property.
details.put(property, value);
|