Id

Inheritance: java.lang.Object

public class Id

Represents file identifier structure.


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

Methods

MethodDescription
getOriginal()Permanent identifier based on the contents of the document at the time it was originally created.
getModified()Changing identifier based on the document’s contents at the time it was last updated.

getOriginal()

public String getOriginal()

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

Returns: java.lang.String - String value

getModified()

public String getModified()

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

Returns: java.lang.String - String value