XmpElementBase
Inheritance: java.lang.Object
All Implemented Interfaces: com.aspose.ms.System.IEquatable
public abstract class XmpElementBase implements System.IEquatable<XmpElementBase>
Represents base xmp element contains attributes.
Methods
Method | Description |
---|---|
addAttribute(String attribute, String value) | Adds the attribute. |
getAttribute(String attribute) | Gets the attribute. |
clearAttributes() | Removes all attributes. |
isEquals(XmpElementBase other) | Indicates whether the current object is equal to another object of the same type. |
equals(Object obj) | Determines whether the specified Object , is equal to this instance. |
hashCode() | Returns a hash code for this instance. |
addAttribute(String attribute, String value)
public void addAttribute(String attribute, String value)
Adds the attribute.
Parameters:
Parameter | Type | Description |
---|---|---|
attribute | java.lang.String | The attribute. |
value | java.lang.String | The value. |
getAttribute(String attribute)
public String getAttribute(String attribute)
Gets the attribute.
Parameters:
Parameter | Type | Description |
---|---|---|
attribute | java.lang.String | The attribute. |
Returns: java.lang.String - Returns the attribute for specified attribute name.
clearAttributes()
public void clearAttributes()
Removes all attributes.
isEquals(XmpElementBase other)
public boolean isEquals(XmpElementBase other)
Indicates whether the current object is equal to another object of the same type.
Parameters:
Parameter | Type | Description |
---|---|---|
other | XmpElementBase | An object to compare with this object. |
Returns:
boolean - true if the current object is equal to the other
parameter; otherwise, false.
equals(Object obj)
public boolean equals(Object obj)
Determines whether the specified Object
, is equal to this instance.
Parameters:
Parameter | Type | Description |
---|---|---|
obj | java.lang.Object | The Object to compare with this instance. |
Returns:
boolean - true
if the specified Object
is equal to this instance; otherwise, false
.
hashCode()
public int hashCode()
Returns a hash code for this instance.
Returns: int - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.