SignatureName
Inheritance: java.lang.Object, com.aspose.pdf.facades.SignatureName
public final class SignatureName extends Object
Represents a class for a signature name. Represents a more precise signature name. Used instead of string names. Allows you to present signatures with the same string names.
Fields
| Field | Description |
|---|---|
| FullName | Gets the full name of the signature, providing a unique and precise identifier for the signature field. |
| Name | Gets the name of a signature. |
Methods
| Method | Description |
|---|---|
| equals | Determines whether this instance and a specified object are equal. |
| getSignature | Gets the signature associated with the signature name. |
| getSignatureDictionary | Gets the signature dictionary. |
| hashCode | Returns a hash code for this instance based on the FullName property. |
| hasSignature | Indicates whether the signature is present or not. |
| toString | Returns a string representation of the {@link SignatureName} instance, primarily using its name. |
FullName
public final String FullName
Gets the full name of the signature, providing a unique and precise identifier for the signature field.
Name
public final String Name
Gets the name of a signature.
equals
Determines whether this instance and a specified object are equal.
getSignature
public final Signature getSignature()
Gets the signature associated with the signature name.
Returns: Signature instance
getSignatureDictionary
public final com.aspose.pdf.engine.data.IPdfDictionary getSignatureDictionary()
Gets the signature dictionary.
Returns: The signature dictionary or null if it not found.
hashCode
public int hashCode()
Returns a hash code for this instance based on the FullName property.
Returns: An integer representing the hash code of the FullName property.
hasSignature
public final boolean hasSignature()
Indicates whether the signature is present or not.
Returns: boolean value
toString
public String toString()
Returns a string representation of the {@link SignatureName} instance, primarily using its name.
Returns: A string representing the name of the signature.