public enum ReplicationEventType extends Enum<ReplicationEventType>
http://www.arangodb.com/manuals/current/RefManualReplication.html#RefManualReplicationEventTypes
Enum Constant and Description |
---|
COLLECTION_CREATED |
COLLECTION_DROPPED |
COLLECTION_PROP_CHANGED |
COLLECTION_RENAMED |
DELETION |
DOCUMENT_UPSERT |
EDGE_UPSERT |
INDEX_CREATED |
INDEX_DROPPED |
LOGGER_STARTED |
LOGGER_STOPPED |
TRANSACTION_COMMITED |
TRANSACTION_STARTED |
Modifier and Type | Method and Description |
---|---|
int |
getType() |
static ReplicationEventType |
valueOf(int type) |
static ReplicationEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplicationEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplicationEventType LOGGER_STOPPED
public static final ReplicationEventType LOGGER_STARTED
public static final ReplicationEventType COLLECTION_CREATED
public static final ReplicationEventType COLLECTION_DROPPED
public static final ReplicationEventType COLLECTION_RENAMED
public static final ReplicationEventType COLLECTION_PROP_CHANGED
public static final ReplicationEventType INDEX_CREATED
public static final ReplicationEventType INDEX_DROPPED
public static final ReplicationEventType TRANSACTION_STARTED
public static final ReplicationEventType TRANSACTION_COMMITED
public static final ReplicationEventType DOCUMENT_UPSERT
public static final ReplicationEventType EDGE_UPSERT
public static final ReplicationEventType DELETION
public static ReplicationEventType[] values()
for (ReplicationEventType c : ReplicationEventType.values()) System.out.println(c);
public static ReplicationEventType 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 int getType()
public static ReplicationEventType valueOf(int type)
Copyright © 2012–2015 ArangoDB GmbH. All rights reserved.