public enum WriteMode extends Enum<WriteMode>
| 枚举常量和说明 |
|---|
PARALLEL
Parallel write
Concurrency between different buckets, and parallel requests within the same bucket as well
|
SEQUENTIAL
Serial write:
Concurrent across different buckets, serial requests within the same bucket.
|
public static final WriteMode SEQUENTIAL
public static final WriteMode PARALLEL
public static WriteMode[] values()
for (WriteMode c : WriteMode.values()) System.out.println(c);
public static WriteMode valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2025. All Rights Reserved.