public static enum Database.DocFlags extends Enum<Database.DocFlags>
Enum Constant and Description |
---|
Match
matches formula
|
NoAccess
if there is reader's field at doc level this is the return value so that we could mark the replication as incomplete
|
NoMatch
does not match formula (deleted or updated)
|
NoPurgeStatus
note has no purge status.
|
Purged
note has been purged.
|
SoftDeleted
if
DirectorySearchQuery.SearchFlag.NOTIFYDELETIONS : note is soft deleted; NoteClass & DocumentClass.NOTIFYDELETION also on (off for hard delete) |
Truncated
document truncated
|
TruncatedAttachments
note has truncated attachments.
|
Modifier and Type | Method and Description |
---|---|
static Database.DocFlags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Database.DocFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Database.DocFlags NoMatch
public static final Database.DocFlags Match
public static final Database.DocFlags Truncated
public static final Database.DocFlags Purged
public static final Database.DocFlags NoPurgeStatus
public static final Database.DocFlags SoftDeleted
DirectorySearchQuery.SearchFlag.NOTIFYDELETIONS
: note is soft deleted; NoteClass & DocumentClass.NOTIFYDELETION
also on (off for hard delete)public static final Database.DocFlags NoAccess
public static final Database.DocFlags TruncatedAttachments
public static Database.DocFlags[] values()
for (Database.DocFlags c : Database.DocFlags.values()) System.out.println(c);
public static Database.DocFlags valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019–2021 HCL. All rights reserved.