public enum ReplicationFlags extends Enum<ReplicationFlags> implements INumberEnum<Short>
DISABLE
and
NEVER_REPLICATE
. The former is used to temporarily disable
replication. The latter is used to indicate that this database should
NEVER be replicated. The former may be set and cleared by the Notes
user interface. The latter is intended to be set programmatically
and SHOULD NEVER be able to be cleared by the user interface.Enum Constant and Description |
---|
ABSTRACT
Abstract during replication
|
CUTOFF_DELETE
Auto-Delete documents prior to cutoff date
|
DISABLE
Disable replication
|
DO_NOT_BROWSE
Do not list in database add
|
DO_NOT_CATALOG
Do not list in catalog
|
HIDDEN_DESIGN
UI does not allow perusal of Design
|
IGNORE_DELETES
Don't propagate deleted notes when
replicating from this database
|
IGNORE_DEST_DELETES
Don't replicate deleted notes
into destination database
|
MULTIDB_INDEX
Include in Multi Database indexing
|
NEVER_REPLICATE
DB is not to be replicated at all
|
NO_CHRONOS
Do not run chronos on database
|
UNREADIFFNEW
Mark unread only if newer note
|
Modifier and Type | Method and Description |
---|---|
long |
getLongValue() |
Short |
getValue() |
static ReplicationFlags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplicationFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplicationFlags DISABLE
public static final ReplicationFlags UNREADIFFNEW
public static final ReplicationFlags IGNORE_DELETES
public static final ReplicationFlags HIDDEN_DESIGN
public static final ReplicationFlags DO_NOT_CATALOG
public static final ReplicationFlags CUTOFF_DELETE
public static final ReplicationFlags NEVER_REPLICATE
public static final ReplicationFlags ABSTRACT
public static final ReplicationFlags DO_NOT_BROWSE
public static final ReplicationFlags NO_CHRONOS
public static final ReplicationFlags IGNORE_DEST_DELETES
public static final ReplicationFlags MULTIDB_INDEX
public static ReplicationFlags[] values()
for (ReplicationFlags c : ReplicationFlags.values()) System.out.println(c);
public static ReplicationFlags 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 nullpublic Short getValue()
getValue
in interface INumberEnum<Short>
public long getLongValue()
getLongValue
in interface INumberEnum<Short>
long
Copyright © 2019–2021 HCL. All rights reserved.