public static enum TimestampBound.Mode extends Enum<TimestampBound.Mode>
TimestampBound
for a
detailed discussion of the various modes.Enum Constant and Description |
---|
EXACT_STALENESS |
MAX_STALENESS |
MIN_READ_TIMESTAMP |
READ_TIMESTAMP |
STRONG |
Modifier and Type | Method and Description |
---|---|
static TimestampBound.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimestampBound.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimestampBound.Mode STRONG
public static final TimestampBound.Mode READ_TIMESTAMP
public static final TimestampBound.Mode MIN_READ_TIMESTAMP
public static final TimestampBound.Mode EXACT_STALENESS
public static final TimestampBound.Mode MAX_STALENESS
public static TimestampBound.Mode[] values()
for (TimestampBound.Mode c : TimestampBound.Mode.values()) System.out.println(c);
public static TimestampBound.Mode 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 Google LLC. All rights reserved.