public enum DcpSnapshotMarkerRequest extends Enum<DcpSnapshotMarkerRequest>
| Modifier and Type | Method and Description |
|---|---|
static boolean |
ack(io.netty.buffer.ByteBuf buffer)
Check if
SnapshotMarkerFlags.ACK flag set for snapshot marker. |
static boolean |
checkpoint(io.netty.buffer.ByteBuf buffer)
Check if
SnapshotMarkerFlags.CHECKPOINT flag set for snapshot marker. |
static boolean |
disk(io.netty.buffer.ByteBuf buffer)
Check if
SnapshotMarkerFlags.DISK flag set for snapshot marker. |
static long |
endSeqno(io.netty.buffer.ByteBuf buffer) |
static int |
flags(io.netty.buffer.ByteBuf buffer) |
static boolean |
is(io.netty.buffer.ByteBuf buffer) |
static boolean |
memory(io.netty.buffer.ByteBuf buffer)
Check if
SnapshotMarkerFlags.MEMORY flag set for snapshot marker. |
static int |
partition(io.netty.buffer.ByteBuf buffer) |
static long |
startSeqno(io.netty.buffer.ByteBuf buffer) |
static String |
toString(io.netty.buffer.ByteBuf buffer) |
static DcpSnapshotMarkerRequest |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DcpSnapshotMarkerRequest[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static DcpSnapshotMarkerRequest[] values()
for (DcpSnapshotMarkerRequest c : DcpSnapshotMarkerRequest.values()) System.out.println(c);
public static DcpSnapshotMarkerRequest 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 static boolean is(io.netty.buffer.ByteBuf buffer)
public static int flags(io.netty.buffer.ByteBuf buffer)
public static boolean memory(io.netty.buffer.ByteBuf buffer)
SnapshotMarkerFlags.MEMORY flag set for snapshot marker.public static boolean disk(io.netty.buffer.ByteBuf buffer)
SnapshotMarkerFlags.DISK flag set for snapshot marker.public static boolean checkpoint(io.netty.buffer.ByteBuf buffer)
SnapshotMarkerFlags.CHECKPOINT flag set for snapshot marker.public static boolean ack(io.netty.buffer.ByteBuf buffer)
SnapshotMarkerFlags.ACK flag set for snapshot marker.public static long startSeqno(io.netty.buffer.ByteBuf buffer)
public static long endSeqno(io.netty.buffer.ByteBuf buffer)
public static String toString(io.netty.buffer.ByteBuf buffer)
public static int partition(io.netty.buffer.ByteBuf buffer)
Copyright © 2021 Couchbase, Inc.. All rights reserved.