@InterfaceAudience.Public @InterfaceStability.Evolving public enum ExternalConsistencyMode extends Enum<ExternalConsistencyMode>
src/kudu/common/common.proto
for a detailed explanations on the
meaning and implications of each mode.Enum Constant and Description |
---|
CLIENT_PROPAGATED |
COMMIT_WAIT |
Modifier and Type | Method and Description |
---|---|
static ExternalConsistencyMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExternalConsistencyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExternalConsistencyMode CLIENT_PROPAGATED
public static final ExternalConsistencyMode COMMIT_WAIT
public static ExternalConsistencyMode[] values()
for (ExternalConsistencyMode c : ExternalConsistencyMode.values()) System.out.println(c);
public static ExternalConsistencyMode 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 © 2016 The Apache Software Foundation. All rights reserved.