Package com.couchbase.lite
Class Meta
java.lang.Object
com.couchbase.lite.Meta
Meta is a factory class for creating the expressions that refer to
the metadata properties of the document.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final MetaExpression
A metadata expression referring to the deleted boolean flag of the document.static final MetaExpression
A metadata expression referring to the expiration date of the document.static final MetaExpression
A metadata expression referring to the ID of the document.static final MetaExpression
A metadata expression referring to the RevisionId of the document.static final MetaExpression
A metadata expression referring to the sequence number of the document. -
Method Summary
-
Field Details
-
id
A metadata expression referring to the ID of the document. -
revisionID
A metadata expression referring to the RevisionId of the document. -
sequence
A metadata expression referring to the sequence number of the document. The sequence number indicates how recently the document has been changed. If one document's `sequence` is greater than another's, that means it was changed more recently. -
deleted
A metadata expression referring to the deleted boolean flag of the document. -
expiration
A metadata expression referring to the expiration date of the document.
-