Id

Inheritance: java.lang.Object, com.aspose.pdf.Id

public class Id extends Object

Represents file identifier structure.


 Document doc = new Document("example.pdf"); String original = doc.getId().getOriginal(); String modified = doc.getId().getModified(); 

Methods

MethodDescription
getModifiedChanging identifier based on the document’s contents at the time it was last updated.
getOriginalPermanent identifier based on the contents of the document at the time it was originally created.

getModified

public String getModified()

Changing identifier based on the document’s contents at the time it was last updated.

Returns: String value

getOriginal

public String getOriginal()

Permanent identifier based on the contents of the document at the time it was originally created.

Returns: String value